summaryrefslogtreecommitdiffstats
path: root/robots
diff options
context:
space:
mode:
authorjsm <jsm@NetBSD.org>2000-01-19 19:19:43 +0000
committerjsm <jsm@NetBSD.org>2000-01-19 19:19:43 +0000
commit5026a88f24eba0358fe364dbad74e3213abed79b (patch)
tree3b7c998d0d5bcb54255688864e4959bd0727cc86 /robots
parentd663ad71b6809546238c8f8bf8ae6734d7e41872 (diff)
downloadbsdgames-darwin-5026a88f24eba0358fe364dbad74e3213abed79b.tar.gz
bsdgames-darwin-5026a88f24eba0358fe364dbad74e3213abed79b.tar.zst
bsdgames-darwin-5026a88f24eba0358fe364dbad74e3213abed79b.zip
Typo fix in unknown option message (from Malcolm Parsons
<malcolm@bits.bris.ac.uk>).
Diffstat (limited to 'robots')
-rw-r--r--robots/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/robots/main.c b/robots/main.c
index aab31524..e772774a 100644
--- a/robots/main.c
+++ b/robots/main.c
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.13 2000/01/19 19:02:27 jsm Exp $ */
+/* $NetBSD: main.c,v 1.14 2000/01/19 19:19:43 jsm Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: main.c,v 1.13 2000/01/19 19:02:27 jsm Exp $");
+__RCSID("$NetBSD: main.c,v 1.14 2000/01/19 19:19:43 jsm Exp $");
#endif
#endif /* not lint */
@@ -126,7 +126,7 @@ main(ac, av)
break;
default:
- fprintf(stderr, "robots: uknown option: %c\n", *sp);
+ fprintf(stderr, "robots: unknown option: %c\n", *sp);
bad_arg = TRUE;
break;
}