diff options
author | 2007-12-30 13:41:09 +0000 | |
---|---|---|
committer | 2007-12-30 13:41:09 +0000 | |
commit | 7797efde60814fcbd074b1e0c41fa974c91ee478 (patch) | |
tree | 0115ded2e330a23189e7f1964f332517eabf556d | |
parent | add missing space between argument names and ellipsis (diff) | |
download | wireguard-openbsd-7797efde60814fcbd074b1e0c41fa974c91ee478.tar.xz wireguard-openbsd-7797efde60814fcbd074b1e0c41fa974c91ee478.zip |
use the same argument name in synopsis and usage; lowercase "usage:"
ok jmc@
-rw-r--r-- | sbin/mountd/mountd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/mountd/mountd.c b/sbin/mountd/mountd.c index 01513c0d93a..645b515c2bf 100644 --- a/sbin/mountd/mountd.c +++ b/sbin/mountd/mountd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mountd.c,v 1.68 2007/06/01 05:37:14 deraadt Exp $ */ +/* $OpenBSD: mountd.c,v 1.69 2007/12/30 13:41:09 sobrado Exp $ */ /* $NetBSD: mountd.c,v 1.31 1996/02/18 11:57:53 fvdl Exp $ */ /* @@ -241,7 +241,7 @@ main(int argc, char *argv[]) /* Compatibility */ break; default: - fprintf(stderr, "Usage: mountd [-dn] [export_file]\n"); + fprintf(stderr, "usage: mountd [-dn] [exportsfile]\n"); exit(1); } argc -= optind; |