Module Name: src
Committed By: pgoyette
Date: Sun Dec 5 04:11:52 UTC 2010
Modified Files:
src/games/boggle/boggle: bog.c
Log Message:
Since this game is installed as 'boggle', fix the usage() text to match.
To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/games/boggle/boggle/bog.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/games/boggle/boggle/bog.c
diff -u src/games/boggle/boggle/bog.c:1.24 src/games/boggle/boggle/bog.c:1.25
--- src/games/boggle/boggle/bog.c:1.24 Wed Aug 12 05:29:40 2009
+++ src/games/boggle/boggle/bog.c Sun Dec 5 04:11:51 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: bog.c,v 1.24 2009/08/12 05:29:40 dholland Exp $ */
+/* $NetBSD: bog.c,v 1.25 2010/12/05 04:11:51 pgoyette Exp $ */
/*-
* Copyright (c) 1993
@@ -42,7 +42,7 @@
#if 0
static char sccsid[] = "@(#)bog.c 8.2 (Berkeley) 5/4/95";
#else
-__RCSID("$NetBSD: bog.c,v 1.24 2009/08/12 05:29:40 dholland Exp $");
+__RCSID("$NetBSD: bog.c,v 1.25 2010/12/05 04:11:51 pgoyette Exp $");
#endif
#endif /* not lint */
@@ -707,6 +707,6 @@
usage(void)
{
(void) fprintf(stderr,
- "usage: bog [-bd] [-s#] [-t#] [-w#] [+[+]] [boardspec]\n");
+ "usage: boggle [-bd] [-s#] [-t#] [-w#] [+[+]] [boardspec]\n");
exit(1);
}