diff options
author | 2008-05-26 09:22:30 +0000 | |
---|---|---|
committer | 2008-05-26 09:22:30 +0000 | |
commit | 06cbb4e08816d68b7e791511c6e296d5fb532ad8 (patch) | |
tree | dcc1051aa3a7c488d8a31830ffa1b9801cc496d4 | |
parent | sort flags on both the synopsis and usage. (diff) | |
download | wireguard-openbsd-06cbb4e08816d68b7e791511c6e296d5fb532ad8.tar.xz wireguard-openbsd-06cbb4e08816d68b7e791511c6e296d5fb532ad8.zip |
"usage:" is lowercase; synchronize synopsis and usage.
-rw-r--r-- | usr.bin/mktemp/mktemp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mktemp/mktemp.c b/usr.bin/mktemp/mktemp.c index 19ba575770e..0a89f33c51f 100644 --- a/usr.bin/mktemp/mktemp.c +++ b/usr.bin/mktemp/mktemp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mktemp.c,v 1.13 2003/06/17 21:56:25 millert Exp $ */ +/* $OpenBSD: mktemp.c,v 1.14 2008/05/26 09:22:30 sobrado Exp $ */ /* * Copyright (c) 1996, 1997, 2001 Todd C. Miller <Todd.Miller@courtesan.com> @@ -17,7 +17,7 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: mktemp.c,v 1.13 2003/06/17 21:56:25 millert Exp $"; +static const char rcsid[] = "$OpenBSD: mktemp.c,v 1.14 2008/05/26 09:22:30 sobrado Exp $"; #endif /* not lint */ #include <paths.h> @@ -129,6 +129,6 @@ usage(void) extern char *__progname; (void)fprintf(stderr, - "Usage: %s [-dqtu] [-p prefix] [template]\n", __progname); + "usage: %s [-dqtu] [-p directory] [template]\n", __progname); exit(1); } |