diff options
author | 2013-03-02 07:18:17 +0000 | |
---|---|---|
committer | 2013-03-02 07:18:17 +0000 | |
commit | e2f8c590afe66a7b23d8e82d6358e8c17df82eab (patch) | |
tree | dbfadf8a510e6895036c55789e875984cd2b3cf2 | |
parent | update currency exchange rates; (diff) | |
download | wireguard-openbsd-e2f8c590afe66a7b23d8e82d6358e8c17df82eab.tar.xz wireguard-openbsd-e2f8c590afe66a7b23d8e82d6358e8c17df82eab.zip |
sort options, and avoid line wrap, in usage(); ok guenther
-rw-r--r-- | usr.bin/getconf/getconf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/getconf/getconf.c b/usr.bin/getconf/getconf.c index c256fbe07c8..1632e30443b 100644 --- a/usr.bin/getconf/getconf.c +++ b/usr.bin/getconf/getconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getconf.c,v 1.13 2013/03/02 05:33:41 guenther Exp $ */ +/* $OpenBSD: getconf.c,v 1.14 2013/03/02 07:18:17 jmc Exp $ */ /*- * Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -536,7 +536,8 @@ usage(void) { extern char *__progname; - (void)fprintf(stderr, "usage: %s [-lL] [-v spec] name [pathname]\n", + (void)fprintf(stderr, + "usage: %s [-Ll] [-v specification] name [pathname]\n", __progname); exit(1); } |