summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@cvs.openbsd.org>2004-06-22 22:42:03 +0000
committerDarren Tucker <dtucker@cvs.openbsd.org>2004-06-22 22:42:03 +0000
commit7b28d89ec8fbebacc0083fb8ebb29b54dc565852 (patch)
treedab3ca0ceb4fe86a056b6aa58b08980087ebd07b
parent17cbd2d3be6733d498fb72d90d6f3c7e52303a06 (diff)
Add quoting for test -z; ok markus@
-rw-r--r--regress/usr.bin/ssh/envpass.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/usr.bin/ssh/envpass.sh b/regress/usr.bin/ssh/envpass.sh
index a5bae06dd4f..5a7e178d810 100644
--- a/regress/usr.bin/ssh/envpass.sh
+++ b/regress/usr.bin/ssh/envpass.sh
@@ -1,4 +1,4 @@
-# $OpenBSD: envpass.sh,v 1.2 2004/06/22 03:12:13 markus Exp $
+# $OpenBSD: envpass.sh,v 1.3 2004/06/22 22:42:02 dtucker Exp $
# Placed in the Public Domain.
tid="environment passing"
@@ -9,7 +9,7 @@ trace "pass env, don't accept"
verbose "test $tid: pass env, don't accept"
_TEST_ENV=blah ${SSH} -oSendEnv="*" -F $OBJ/ssh_proxy otherhost \
sh << 'EOF'
- test -z $_TEST_ENV
+ test -z "$_TEST_ENV"
EOF
r=$?
if [ $r -ne 0 ]; then
@@ -20,7 +20,7 @@ trace "don't pass env, accept"
verbose "test $tid: don't pass env, accept"
${SSH} -F $OBJ/ssh_proxy otherhost \
sh << 'EOF'
- test -z $_XXX_TEST_A && test -z $_XXX_TEST_B
+ test -z "$_XXX_TEST_A" && test -z "$_XXX_TEST_B"
EOF
r=$?
if [ $r -ne 0 ]; then