diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-04-14 17:59:21 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-04-14 17:59:21 +0000 |
commit | 73afd89610376a004c31618c16c23ccb31f99c09 (patch) | |
tree | 38e521a2676eb9e617c884ddfeebf44264cee238 | |
parent | 2c2256cb8b12180ae3771b580fbed3c7b8fc1e38 (diff) | |
download | busybox-w32-73afd89610376a004c31618c16c23ccb31f99c09.tar.gz busybox-w32-73afd89610376a004c31618c16c23ccb31f99c09.tar.bz2 busybox-w32-73afd89610376a004c31618c16c23ccb31f99c09.zip |
Steven Scholz writes:
Hi there,
the "-h" option of httpd is not described in the usage text.
Please find the attached patch.
Thanks.
Steven
-rw-r--r-- | include/usage.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h index cd8a5ce71..43b903c3d 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -1003,6 +1003,7 @@ | |||
1003 | USAGE_HTTPD_SETUID(" [-u user]") \ | 1003 | USAGE_HTTPD_SETUID(" [-u user]") \ |
1004 | USAGE_HTTPD_BASIC_AUTH(" [-r <realm>]") \ | 1004 | USAGE_HTTPD_BASIC_AUTH(" [-r <realm>]") \ |
1005 | USAGE_HTTPD_AUTH_MD5(" [-m pass]") \ | 1005 | USAGE_HTTPD_AUTH_MD5(" [-m pass]") \ |
1006 | " [-h home]" \ | ||
1006 | " [-d/-e <string>]" | 1007 | " [-d/-e <string>]" |
1007 | #define httpd_full_usage \ | 1008 | #define httpd_full_usage \ |
1008 | "Listens for incoming http server requests.\n\n"\ | 1009 | "Listens for incoming http server requests.\n\n"\ |
@@ -1012,6 +1013,7 @@ | |||
1012 | USAGE_HTTPD_SETUID("\t-u USER\tSet uid to USER after listening privileges port\n") \ | 1013 | USAGE_HTTPD_SETUID("\t-u USER\tSet uid to USER after listening privileges port\n") \ |
1013 | USAGE_HTTPD_BASIC_AUTH("\t-r REALM\tAuthentication Realm for Basic Authentication\n") \ | 1014 | USAGE_HTTPD_BASIC_AUTH("\t-r REALM\tAuthentication Realm for Basic Authentication\n") \ |
1014 | USAGE_HTTPD_AUTH_MD5("\t-m PASS\t\tCrypt PASS with md5 algorithm\n") \ | 1015 | USAGE_HTTPD_AUTH_MD5("\t-m PASS\t\tCrypt PASS with md5 algorithm\n") \ |
1016 | "\t-h HOME \tSpecifies http HOME directory (default ./)\n" \ | ||
1015 | "\t-e STRING\tHtml encode STRING\n" \ | 1017 | "\t-e STRING\tHtml encode STRING\n" \ |
1016 | "\t-d STRING\tURL decode STRING" | 1018 | "\t-d STRING\tURL decode STRING" |
1017 | 1019 | ||