From b1d04a0c1c738b081e7cc8a522a0edba4f1a6989 Mon Sep 17 00:00:00 2001 From: short <> Date: Fri, 30 Apr 2004 16:46:15 +0000 Subject: [PATCH] "NOTREACHED" fatal error reported to stderr now (no longer to stdout) --- bin/passg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/passg b/bin/passg index 4b63335..77238ef 100755 --- a/bin/passg +++ b/bin/passg @@ -9,7 +9,7 @@ for i in $PATH;do IFS="$save_IFS" test -x "$i/$me" -a "$i/$me" != "$arg0" || continue exec "$i/$me" "$@" - echo "NOTREACHED" && exit 1 + echo >&2 "NOTREACHED" && exit 1 done IFS="$save_IFS" exec "g$me" "$@" -- 1.8.3.1