From 64c576e959a18580e785d0ca72bdd7bfe2f53bb4 Mon Sep 17 00:00:00 2001 From: dtucker Date: Tue, 10 Jun 2008 15:39:38 +0000 Subject: [PATCH] - dtucker@cvs.openbsd.org 2008/06/10 15:28:49 [test-exec.sh] Add quotes --- ChangeLog | 3 +++ regress/test-exec.sh | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 180db22e..648b306c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -35,6 +35,9 @@ - dtucker@cvs.openbsd.org 2008/06/10 15:21:41 [test-exec.sh] Use a more portable construct for checking if we're running a putty test + - dtucker@cvs.openbsd.org 2008/06/10 15:28:49 + [test-exec.sh] + Add quotes - (dtucker) [openbsd-compat/fake-rfc2553.h] Add sin6_scope_id to sockaddr_in6 since the new CIDR code in addmatch.c references it. diff --git a/regress/test-exec.sh b/regress/test-exec.sh index f05c671c..72fc9995 100644 --- a/regress/test-exec.sh +++ b/regress/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. #SUDO=sudo @@ -290,7 +290,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 -- 2.45.1