diff options
author | pgf <pgf@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-08-01 19:39:47 +0000 |
---|---|---|
committer | pgf <pgf@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-08-01 19:39:47 +0000 |
commit | 0a9edffaeb076e664a74f1710ad3d6702759c264 (patch) | |
tree | e9c5b28bf8689091edc62a1f8de54ed31ffb2463 /include | |
parent | ef4aaa23ad977961c2b8abc53512164314bff15e (diff) | |
download | busybox-w32-0a9edffaeb076e664a74f1710ad3d6702759c264.tar.gz busybox-w32-0a9edffaeb076e664a74f1710ad3d6702759c264.tar.bz2 busybox-w32-0a9edffaeb076e664a74f1710ad3d6702759c264.zip |
commiting:
0000073: Add option to inetd applet to run in foreground
this option was already there for uclinux -- this just exposes
it in the normal case as well.
git-svn-id: svn://busybox.net/trunk/busybox@11010 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h index dad6078cd..5d7c36551 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -1193,10 +1193,11 @@ | |||
1193 | "\t-f\tforce de/configuration" | 1193 | "\t-f\tforce de/configuration" |
1194 | 1194 | ||
1195 | #define inetd_trivial_usage \ | 1195 | #define inetd_trivial_usage \ |
1196 | "[-q len] [conf]" | 1196 | "[-f] [-q len] [conf]" |
1197 | #define inetd_full_usage \ | 1197 | #define inetd_full_usage \ |
1198 | "Listens for network connections and launches programs\n\n" \ | 1198 | "Listens for network connections and launches programs\n\n" \ |
1199 | "Option:\n" \ | 1199 | "Option:\n" \ |
1200 | "\t-f\tRun as a foreground progress\n" \ | ||
1200 | "\t-q\tSets the size of the socket listen queue to\n" \ | 1201 | "\t-q\tSets the size of the socket listen queue to\n" \ |
1201 | "\t\tthe specified value. Default is 128" | 1202 | "\t\tthe specified value. Default is 128" |
1202 | 1203 | ||