diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2007-03-26 17:13:56 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2007-03-26 17:13:56 +0000 |
commit | b7b431926c81f40cfdfd7e008faf2e41d1d22a22 (patch) | |
tree | 08d45fb5877856e1c1bc897981cb64adc431c108 /usr.sbin/httpd | |
parent | 0fe594ad35284e2c84652d7c5be76cd438e566c3 (diff) |
remove the unneccessary options descriptions from usage();
noticed by Igor Sobrado
ok henning
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r-- | usr.sbin/httpd/src/support/htpasswd.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/usr.sbin/httpd/src/support/htpasswd.c b/usr.sbin/httpd/src/support/htpasswd.c index 23e035532b2..9b81d2175eb 100644 --- a/usr.sbin/httpd/src/support/htpasswd.c +++ b/usr.sbin/httpd/src/support/htpasswd.c @@ -238,14 +238,6 @@ static int usage(void) fprintf(stderr, "\thtpasswd -b [-c] [-d | -l | -m | -p | -s] passwordfile username password\n"); fprintf(stderr, "\thtpasswd -n [-d | -l | -m | -p | -s] username\n"); fprintf(stderr, "\thtpasswd -bn [-d | -l | -m | -p | -s] username password\n"); - fprintf(stderr, " -b Use the password from the command line rather than prompting for it.\n"); - fprintf(stderr, " -c Create a new file.\n"); - fprintf(stderr, " -l Force Blowfish-based CRYPT encryption of the password(default).\n"); - fprintf(stderr, " -d Force DES-based CRYPT encryption of the password.\n"); - fprintf(stderr, " -m Force MD5 encryption of the password.\n"); - fprintf(stderr, " -n Don't update file; display results on stdout.\n"); - fprintf(stderr, " -p Do not encrypt the password (plaintext).\n"); - fprintf(stderr, " -s Force SHA encryption of the password.\n"); return ERR_SYNTAX; } |