diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | regress/sftp-cmds.sh | 3 |
2 files changed, 3 insertions, 3 deletions
@@ -20,6 +20,7 @@ | |||
20 | - [regress/agent.sh regress/proto-version.sh regress/ssh-com.sh | 20 | - [regress/agent.sh regress/proto-version.sh regress/ssh-com.sh |
21 | regress/test-exec.sh] Handle different was of echoing without newlines. | 21 | regress/test-exec.sh] Handle different was of echoing without newlines. |
22 | - [regress/dynamic-forward.sh] Some "which" programs output on stderr. | 22 | - [regress/dynamic-forward.sh] Some "which" programs output on stderr. |
23 | - [regress/sftp-cmds.sh] Use portable "test" option. | ||
23 | 24 | ||
24 | 20030903 | 25 | 20030903 |
25 | - (djm) OpenBSD CVS Sync | 26 | - (djm) OpenBSD CVS Sync |
@@ -1010,4 +1011,4 @@ | |||
1010 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. | 1011 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. |
1011 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au | 1012 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au |
1012 | 1013 | ||
1013 | $Id: ChangeLog,v 1.2953 2003/09/04 05:22:01 dtucker Exp $ | 1014 | $Id: ChangeLog,v 1.2954 2003/09/04 05:24:50 dtucker Exp $ |
diff --git a/regress/sftp-cmds.sh b/regress/sftp-cmds.sh index c747988d1..7558f5e01 100644 --- a/regress/sftp-cmds.sh +++ b/regress/sftp-cmds.sh | |||
@@ -17,7 +17,6 @@ do | |||
17 | fi | 17 | fi |
18 | done | 18 | done |
19 | 19 | ||
20 | |||
21 | # Path with embedded quote | 20 | # Path with embedded quote |
22 | QUOTECOPY=${COPY}".\"blah\"" | 21 | QUOTECOPY=${COPY}".\"blah\"" |
23 | QUOTECOPY_ARG=${COPY}'.\"blah\"' | 22 | QUOTECOPY_ARG=${COPY}'.\"blah\"' |
@@ -148,7 +147,7 @@ test -d ${COPY}.dd2 || fail "missing newname after rename directory" | |||
148 | 147 | ||
149 | verbose "$tid: ln" | 148 | verbose "$tid: ln" |
150 | echo "ln ${COPY}.1 ${COPY}.2" | ${SFTP} -P ${SFTPSERVER} >/dev/null 2>&1 || fail "ln failed" | 149 | echo "ln ${COPY}.1 ${COPY}.2" | ${SFTP} -P ${SFTPSERVER} >/dev/null 2>&1 || fail "ln failed" |
151 | test -L ${COPY}.2 || fail "missing file after ln" | 150 | test -h ${COPY}.2 || fail "missing file after ln" |
152 | 151 | ||
153 | verbose "$tid: mkdir" | 152 | verbose "$tid: mkdir" |
154 | echo "mkdir ${COPY}.dd" | ${SFTP} -P ${SFTPSERVER} >/dev/null 2>&1 \ | 153 | echo "mkdir ${COPY}.dd" | ${SFTP} -P ${SFTPSERVER} >/dev/null 2>&1 \ |