diff options
author | Igor Sobrado <sobrado@cvs.openbsd.org> | 2009-06-09 14:56:20 +0000 |
---|---|---|
committer | Igor Sobrado <sobrado@cvs.openbsd.org> | 2009-06-09 14:56:20 +0000 |
commit | a8a280981bedeba8d3f214883e863336bcaa2944 (patch) | |
tree | 697509e51ef446d953f97853f60f146246679398 /games/canfield | |
parent | 9796b4c5d217045c7eb610323a03be4562cf454f (diff) |
add missing flag to usage; synchronize argument names with documentation;
while here, use lowercase letters for "usage:".
Diffstat (limited to 'games/canfield')
-rw-r--r-- | games/canfield/cfscores/cfscores.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/canfield/cfscores/cfscores.c b/games/canfield/cfscores/cfscores.c index 0a4a91bbc73..3a62dea7853 100644 --- a/games/canfield/cfscores/cfscores.c +++ b/games/canfield/cfscores/cfscores.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cfscores.c,v 1.13 2005/05/01 02:43:12 djm Exp $ */ +/* $OpenBSD: cfscores.c,v 1.14 2009/06/09 14:56:19 sobrado Exp $ */ /* $NetBSD: cfscores.c,v 1.3 1995/03/21 15:08:37 cgd Exp $ */ /* @@ -40,7 +40,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)cfscores.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: cfscores.c,v 1.13 2005/05/01 02:43:12 djm Exp $"; +static char rcsid[] = "$OpenBSD: cfscores.c,v 1.14 2009/06/09 14:56:19 sobrado Exp $"; #endif #endif /* not lint */ @@ -77,7 +77,7 @@ main(int argc, char *argv[]) gid_t gid; if (argc > 2) { - fprintf(stderr, "Usage: cfscores [user]\n"); + fprintf(stderr, "usage: cfscores [-a] [username]\n"); exit(1); } dbfd = open(_PATH_SCORE, O_RDONLY); |