summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--regress/test-exec.sh4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index f674a79a0..35aad8652 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -35,6 +35,9 @@
35 - dtucker@cvs.openbsd.org 2008/06/10 15:21:41 35 - dtucker@cvs.openbsd.org 2008/06/10 15:21:41
36 [test-exec.sh] 36 [test-exec.sh]
37 Use a more portable construct for checking if we're running a putty test 37 Use a more portable construct for checking if we're running a putty test
38 - dtucker@cvs.openbsd.org 2008/06/10 15:28:49
39 [test-exec.sh]
40 Add quotes
38 - (dtucker) [openbsd-compat/fake-rfc2553.h] Add sin6_scope_id to sockaddr_in6 41 - (dtucker) [openbsd-compat/fake-rfc2553.h] Add sin6_scope_id to sockaddr_in6
39 since the new CIDR code in addmatch.c references it. 42 since the new CIDR code in addmatch.c references it.
40 43
@@ -4123,4 +4126,4 @@
4123 OpenServer 6 and add osr5bigcrypt support so when someone migrates 4126 OpenServer 6 and add osr5bigcrypt support so when someone migrates
4124 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 4127 passwords between UnixWare and OpenServer they will still work. OK dtucker@
4125 4128
4126$Id: ChangeLog,v 1.4957 2008/06/10 15:38:52 dtucker Exp $ 4129$Id: ChangeLog,v 1.4958 2008/06/10 15:39:38 dtucker Exp $
diff --git a/regress/test-exec.sh b/regress/test-exec.sh
index f05c671cd..72fc99951 100644
--- a/regress/test-exec.sh
+++ b/regress/test-exec.sh
@@ -1,4 +1,4 @@
1# $OpenBSD: test-exec.sh,v 1.33 2008/06/10 15:21:41 dtucker Exp $ 1# $OpenBSD: test-exec.sh,v 1.34 2008/06/10 15:28:49 dtucker Exp $
2# Placed in the Public Domain. 2# Placed in the Public Domain.
3 3
4#SUDO=sudo 4#SUDO=sudo
@@ -290,7 +290,7 @@ chmod 644 $OBJ/authorized_keys_$USER
290# If PuTTY is present and we are running a PuTTY test, prepare keys and 290# If PuTTY is present and we are running a PuTTY test, prepare keys and
291# configuration 291# configuration
292REGRESS_INTEROP_PUTTY=no 292REGRESS_INTEROP_PUTTY=no
293if test -x $PUTTYGEN -a -x $PLINK ; then 293if test -x "$PUTTYGEN" -a -x "$PLINK" ; then
294 REGRESS_INTEROP_PUTTY=yes 294 REGRESS_INTEROP_PUTTY=yes
295fi 295fi
296case "$SCRIPT" in 296case "$SCRIPT" in