diff options
author | Damien Miller <djm@mindrot.org> | 2008-03-15 09:25:54 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2008-03-15 09:25:54 +1100 |
commit | 8f8b156acc3028532cfe19052772eb80ac22eb62 (patch) | |
tree | 804bd4b2c0950659329714809dcbd099b3b86bc6 | |
parent | 02db85bdcbb07f632cddd927ded208f3d4f1e65f (diff) |
- (djm) [regress/test-exec.sh] Quote putty-related variables in case they are
empty; report and patch from Peter Stuge
- (djm) [regress/test-exec.sh] Silence noise from detection of putty
commands; report from Peter Stuge
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | regress/test-exec.sh | 6 |
2 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,9 @@ | |||
1 | 20080315 | ||
2 | - (djm) [regress/test-exec.sh] Quote putty-related variables in case they are | ||
3 | empty; report and patch from Peter Stuge | ||
4 | - (djm) [regress/test-exec.sh] Silence noise from detection of putty | ||
5 | commands; report from Peter Stuge | ||
6 | |||
1 | 20080314 | 7 | 20080314 |
2 | - (tim) [regress/sftp-cmds.sh] s/cd/lcd/ in lls test. Reported by | 8 | - (tim) [regress/sftp-cmds.sh] s/cd/lcd/ in lls test. Reported by |
3 | vinschen at redhat.com. Add () to put echo commands in subshell for lls test | 9 | vinschen at redhat.com. Add () to put echo commands in subshell for lls test |
@@ -3757,4 +3763,4 @@ | |||
3757 | OpenServer 6 and add osr5bigcrypt support so when someone migrates | 3763 | OpenServer 6 and add osr5bigcrypt support so when someone migrates |
3758 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ | 3764 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ |
3759 | 3765 | ||
3760 | $Id: ChangeLog,v 1.4877 2008/03/14 18:02:51 tim Exp $ | 3766 | $Id: ChangeLog,v 1.4878 2008/03/14 22:25:54 djm Exp $ |
diff --git a/regress/test-exec.sh b/regress/test-exec.sh index cf7665973..e67dd7b5d 100644 --- a/regress/test-exec.sh +++ b/regress/test-exec.sh | |||
@@ -104,14 +104,14 @@ if [ "x$TEST_SSH_PLINK" != "x" ]; then | |||
104 | # Find real binary, if it exists | 104 | # Find real binary, if it exists |
105 | case "${TEST_SSH_PLINK}" in | 105 | case "${TEST_SSH_PLINK}" in |
106 | /*) PLINK="${TEST_SSH_PLINK}" ;; | 106 | /*) PLINK="${TEST_SSH_PLINK}" ;; |
107 | *) PLINK=`which ${TEST_SSH_PLINK}` ;; | 107 | *) PLINK=`which ${TEST_SSH_PLINK} 2>/dev/null` ;; |
108 | esac | 108 | esac |
109 | fi | 109 | fi |
110 | if [ "x$TEST_SSH_PUTTYGEN" != "x" ]; then | 110 | if [ "x$TEST_SSH_PUTTYGEN" != "x" ]; then |
111 | # Find real binary, if it exists | 111 | # Find real binary, if it exists |
112 | case "${TEST_SSH_PUTTYGEN}" in | 112 | case "${TEST_SSH_PUTTYGEN}" in |
113 | /*) PUTTYGEN="${TEST_SSH_PUTTYGEN}" ;; | 113 | /*) PUTTYGEN="${TEST_SSH_PUTTYGEN}" ;; |
114 | *) PUTTYGEN=`which ${TEST_SSH_PUTTYGEN}` ;; | 114 | *) PUTTYGEN=`which ${TEST_SSH_PUTTYGEN} 2>/dev/null` ;; |
115 | esac | 115 | esac |
116 | fi | 116 | fi |
117 | 117 | ||
@@ -289,7 +289,7 @@ chmod 644 $OBJ/authorized_keys_$USER | |||
289 | 289 | ||
290 | # If PuTTY is present, prepare keys and configuration | 290 | # If PuTTY is present, prepare keys and configuration |
291 | REGRESS_INTEROP_PUTTY=no | 291 | REGRESS_INTEROP_PUTTY=no |
292 | if test -x $PUTTYGEN -a -x $PLINK ; then | 292 | if test -x "$PUTTYGEN" -a -x "$PLINK" ; then |
293 | mkdir -p ${OBJ}/.putty | 293 | mkdir -p ${OBJ}/.putty |
294 | 294 | ||
295 | # Add a PuTTY key to authorized_keys | 295 | # Add a PuTTY key to authorized_keys |