From ebcd7549ac73a2d649afd0629cb5a7fe0e02b8f7 Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Sat, 16 Nov 2013 11:23:43 +0100 Subject: t_client.sh: Write errors to stderr and document requirements Signed-off-by: David Sommerseth Acked-by: Matthias Andree Acked-by: Gert Doering Message-Id: <1384597423-11136-1-git-send-email-dazo@users.sourceforge.net> URL: http://article.gmane.org/gmane.network.openvpn.devel/7984 Signed-off-by: Gert Doering --- tests/t_client.sh.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/t_client.sh.in b/tests/t_client.sh.in index af12e2d..b13c802 100755 --- a/tests/t_client.sh.in +++ b/tests/t_client.sh.in @@ -27,12 +27,12 @@ fi # Check for external dependencies which fping > /dev/null if [ $? -ne 0 ]; then - echo "$0: fping is not available in \$PATH" + echo "$0: fping is not available in \$PATH" >&2 exit 77 fi which fping6 > /dev/null if [ $? -ne 0 ]; then - echo "$0: fping6 is not available in \$PATH" + echo "$0: fping6 is not available in \$PATH" >&2 exit 77 fi -- cgit