diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2008-06-10 15:28:50 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2008-06-10 15:28:50 +0000 |
commit | 9dda63a98a4e82d04c891c4921a6846822e87e73 (patch) | |
tree | 7b3634e76c177958abb17b814c402ab3deb2e9f6 /regress/usr.bin/ssh | |
parent | 81e4f072710d46b98ff17d73007f225094b6d9ae (diff) |
Add quotes
Diffstat (limited to 'regress/usr.bin/ssh')
-rw-r--r-- | regress/usr.bin/ssh/test-exec.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/ssh/test-exec.sh b/regress/usr.bin/ssh/test-exec.sh index f835c1ad9c1..29ad4392ab2 100644 --- a/regress/usr.bin/ssh/test-exec.sh +++ b/regress/usr.bin/ssh/test-exec.sh @@ -1,4 +1,4 @@ -# $OpenBSD: test-exec.sh,v 1.33 2008/06/10 15:21:41 dtucker Exp $ +# $OpenBSD: test-exec.sh,v 1.34 2008/06/10 15:28:49 dtucker Exp $ # Placed in the Public Domain. USER=`id -un` @@ -235,7 +235,7 @@ chmod 644 $OBJ/authorized_keys_$USER # If PuTTY is present and we are running a PuTTY test, prepare keys and # configuration REGRESS_INTEROP_PUTTY=no -if test -x $PUTTYGEN -a -x $PLINK ; then +if test -x "$PUTTYGEN" -a -x "$PLINK" ; then REGRESS_INTEROP_PUTTY=yes fi case "$SCRIPT" in |