diff options
-rw-r--r-- | usr.sbin/pwd_mkdb/pwd_mkdb.c | 7 | ||||
-rw-r--r-- | usr.sbin/quot/quot.c | 8 | ||||
-rw-r--r-- | usr.sbin/sasyncd/sasyncd.c | 5 |
3 files changed, 9 insertions, 11 deletions
diff --git a/usr.sbin/pwd_mkdb/pwd_mkdb.c b/usr.sbin/pwd_mkdb/pwd_mkdb.c index fe5866ec2c6..b55eec1d7dd 100644 --- a/usr.sbin/pwd_mkdb/pwd_mkdb.c +++ b/usr.sbin/pwd_mkdb/pwd_mkdb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pwd_mkdb.c,v 1.38 2004/08/08 00:05:09 deraadt Exp $ */ +/* $OpenBSD: pwd_mkdb.c,v 1.39 2008/03/17 20:30:16 sobrado Exp $ */ /*- * Copyright (c) 1991, 1993, 1994 @@ -41,7 +41,7 @@ static const char copyright[] = #if 0 static const char sccsid[] = "from: @(#)pwd_mkdb.c 8.5 (Berkeley) 4/20/94"; #else -static const char rcsid[] = "$OpenBSD: pwd_mkdb.c,v 1.38 2004/08/08 00:05:09 deraadt Exp $"; +static const char rcsid[] = "$OpenBSD: pwd_mkdb.c,v 1.39 2008/03/17 20:30:16 sobrado Exp $"; #endif #endif /* not lint */ @@ -466,9 +466,8 @@ cleanup(void) void usage(void) { - (void)fprintf(stderr, - "usage: pwd_mkdb [-c] [-p | -s] [-d basedir] [-u username] file\n"); + "usage: pwd_mkdb [-c] [-p | -s] [-d directory] [-u username] file\n"); exit(1); } diff --git a/usr.sbin/quot/quot.c b/usr.sbin/quot/quot.c index 2bfd2375208..047c89879c3 100644 --- a/usr.sbin/quot/quot.c +++ b/usr.sbin/quot/quot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: quot.c,v 1.18 2007/09/02 15:19:40 deraadt Exp $ */ +/* $OpenBSD: quot.c,v 1.19 2008/03/17 20:30:17 sobrado Exp $ */ /* * Copyright (C) 1991, 1994 Wolfgang Solfrank. @@ -32,7 +32,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: quot.c,v 1.18 2007/09/02 15:19:40 deraadt Exp $"; +static char rcsid[] = "$Id: quot.c,v 1.19 2008/03/17 20:30:17 sobrado Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -509,9 +509,9 @@ static void usage(void) { #ifdef COMPAT - fprintf(stderr, "Usage: quot [-nfcvha] [filesystem ...]\n"); + fprintf(stderr, "usage: quot [-nfcvha] [filesystem ...]\n"); #else /* COMPAT */ - fprintf(stderr, "Usage: quot [ -acfhknv ] [ filesystem ... ]\n"); + fprintf(stderr, "usage: quot [-acfhknv] [filesystem ...]\n"); #endif /* COMPAT */ exit(1); } diff --git a/usr.sbin/sasyncd/sasyncd.c b/usr.sbin/sasyncd/sasyncd.c index 2ee83d24028..e8aebf8b71c 100644 --- a/usr.sbin/sasyncd/sasyncd.c +++ b/usr.sbin/sasyncd/sasyncd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sasyncd.c,v 1.17 2007/02/26 04:36:57 ray Exp $ */ +/* $OpenBSD: sasyncd.c,v 1.18 2008/03/17 20:30:17 sobrado Exp $ */ /* * Copyright (c) 2005 Håkan Olsson. All rights reserved. @@ -134,8 +134,7 @@ usage(void) { extern char *__progname; - fprintf(stderr, "Usage: %s [-c config-file] [-d] [-v[v]]\n", - __progname); + fprintf(stderr, "usage: %s [-dv] [-c config-file]\n", __progname); exit(1); } |