summaryrefslogtreecommitdiffstats
path: root/wtf
diff options
context:
space:
mode:
authorsommerfeld <sommerfeld@NetBSD.org>1999-08-13 03:02:06 +0000
committersommerfeld <sommerfeld@NetBSD.org>1999-08-13 03:02:06 +0000
commit5e93f58c61f29fc79f65d48052d2de223db7bf65 (patch)
tree1da6912415a187d1c928ae8a6ee3c6a97cbf30b3 /wtf
parentb3d8c476cf20195b9b5ed4842b95c4df54201718 (diff)
downloadbsdgames-darwin-5e93f58c61f29fc79f65d48052d2de223db7bf65.tar.gz
bsdgames-darwin-5e93f58c61f29fc79f65d48052d2de223db7bf65.tar.zst
bsdgames-darwin-5e93f58c61f29fc79f65d48052d2de223db7bf65.zip
Fix the part of pr8201 which is IMHO a bug: the error message now goes
to stderr. The existing error message ("I don't know what xxx means") is unchanged, as it is stylisticly in keeping with the light-hearted nature of the program, and is also more likely to be accurate than the "no such acronym" error message proposed in 8201.
Diffstat (limited to 'wtf')
-rw-r--r--wtf/wtf4
1 files changed, 2 insertions, 2 deletions
diff --git a/wtf/wtf b/wtf/wtf
index c4a0d893..623c2b8d 100644
--- a/wtf/wtf
+++ b/wtf/wtf
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: wtf,v 1.4 1999/07/27 15:41:27 drochner Exp $
+# $NetBSD: wtf,v 1.5 1999/08/13 03:02:06 sommerfeld Exp $
#
# Public domain
#
@@ -27,7 +27,7 @@ while [ $# -gt 0 ] ; do
if [ $? -eq 0 ] ; then
echo "$1: $ans"
else
- echo "Gee... I don't know what $1 means..."
+ echo "Gee... I don't know what $1 means..." 1>&2
rv=1
fi
fi