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 /include | |
parent | 2c2256cb8b12180ae3771b580fbed3c7b8fc1e38 (diff) |
Steven Scholz writes:
Hi there,
the "-h" option of httpd is not described in the usage text.
Please find the attached patch.
Thanks.
Steven
Diffstat (limited to 'include')
-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 @@ USAGE_HTTPD_SETUID(" [-u user]") \ USAGE_HTTPD_BASIC_AUTH(" [-r <realm>]") \ USAGE_HTTPD_AUTH_MD5(" [-m pass]") \ + " [-h home]" \ " [-d/-e <string>]" #define httpd_full_usage \ "Listens for incoming http server requests.\n\n"\ @@ -1012,6 +1013,7 @@ USAGE_HTTPD_SETUID("\t-u USER\tSet uid to USER after listening privileges port\n") \ USAGE_HTTPD_BASIC_AUTH("\t-r REALM\tAuthentication Realm for Basic Authentication\n") \ USAGE_HTTPD_AUTH_MD5("\t-m PASS\t\tCrypt PASS with md5 algorithm\n") \ + "\t-h HOME \tSpecifies http HOME directory (default ./)\n" \ "\t-e STRING\tHtml encode STRING\n" \ "\t-d STRING\tURL decode STRING" |