[test-exec.sh]
     Add quotes
This commit is contained in:
Darren Tucker 2008-06-11 01:39:38 +10:00
parent 5f346649ce
commit d8bafea5a0
2 changed files with 6 additions and 3 deletions

View File

@ -35,6 +35,9 @@
- dtucker@cvs.openbsd.org 2008/06/10 15:21:41 - dtucker@cvs.openbsd.org 2008/06/10 15:21:41
[test-exec.sh] [test-exec.sh]
Use a more portable construct for checking if we're running a putty test 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 - (dtucker) [openbsd-compat/fake-rfc2553.h] Add sin6_scope_id to sockaddr_in6
since the new CIDR code in addmatch.c references it. since the new CIDR code in addmatch.c references it.
@ -4123,4 +4126,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@ passwords between UnixWare and OpenServer they will still work. OK dtucker@
$Id: ChangeLog,v 1.4957 2008/06/10 15:38:52 dtucker Exp $ $Id: ChangeLog,v 1.4958 2008/06/10 15:39:38 dtucker Exp $

View File

@ -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. # Placed in the Public Domain.
#SUDO=sudo #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 # If PuTTY is present and we are running a PuTTY test, prepare keys and
# configuration # configuration
REGRESS_INTEROP_PUTTY=no REGRESS_INTEROP_PUTTY=no
if test -x $PUTTYGEN -a -x $PLINK ; then if test -x "$PUTTYGEN" -a -x "$PLINK" ; then
REGRESS_INTEROP_PUTTY=yes REGRESS_INTEROP_PUTTY=yes
fi fi
case "$SCRIPT" in case "$SCRIPT" in