diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2014-03-19 14:56:45 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2014-03-19 14:56:45 +0000 |
commit | b30fa6b7bf5aab45b83c2f0b5c688a7ee74716e7 (patch) | |
tree | b1361ee97babd186a16afb6b3320502f193253a6 /usr.bin | |
parent | 18be1f9e7c7fb63836be11d5a3fb971edf91c88e (diff) |
missing -B in second usage line
pointed out by jmc@, thanks!
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/htpasswd/htpasswd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/htpasswd/htpasswd.c b/usr.bin/htpasswd/htpasswd.c index 56c5a31cde4..81d1e81f1dd 100644 --- a/usr.bin/htpasswd/htpasswd.c +++ b/usr.bin/htpasswd/htpasswd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: htpasswd.c,v 1.7 2014/03/18 17:47:04 florian Exp $ */ +/* $OpenBSD: htpasswd.c,v 1.8 2014/03/19 14:56:44 florian Exp $ */ /* * Copyright (c) 2014 Florian Obser <florian@openbsd.org> * @@ -37,7 +37,7 @@ __dead void usage(void) { fprintf(stderr, "usage:\t%s [file] login\n", __progname); - fprintf(stderr, "\t%s [file]\n", __progname); + fprintf(stderr, "\t%s -B [file]\n", __progname); exit(1); } |