diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | regress/sftp-cmds.sh | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,7 @@ +20040416 + - (dtucker) [regress/sftp-cmds.sh] Skip quoting test on Cygwin, since + FAT/NTFS does not permit quotes in filenames. From vinschen at redhat.com + 20040412 - (dtucker) [sshd_config.5] Add PermitRootLogin without-password warning from bug #701 (text from jfh at cise.ufl.edu). @@ -966,4 +970,4 @@ - (djm) Trim deprecated options from INSTALL. Mention UsePAM - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu -$Id: ChangeLog,v 1.3311 2004/04/14 10:14:26 djm Exp $ +$Id: ChangeLog,v 1.3312 2004/04/16 07:58:28 dtucker Exp $ diff --git a/regress/sftp-cmds.sh b/regress/sftp-cmds.sh index 3669b19f..31b21d1f 100644 --- a/regress/sftp-cmds.sh +++ b/regress/sftp-cmds.sh @@ -85,6 +85,7 @@ echo "get \"$DATA\" $COPY" | ${SFTP} -P ${SFTPSERVER} >/dev/null 2>&1 \ || fail "get failed" cmp $DATA ${COPY} || fail "corrupted copy after get" +if [ "$os" != "cygwin" ]; then rm -f ${QUOTECOPY} cp $DATA ${QUOTECOPY} verbose "$tid: get filename with quotes" @@ -92,6 +93,7 @@ echo "get \"$QUOTECOPY_ARG\" ${COPY}" | ${SFTP} -P ${SFTPSERVER} >/dev/null 2>&1 || fail "put failed" cmp ${COPY} ${QUOTECOPY} || fail "corrupted copy after get with quotes" rm -f ${QUOTECOPY} ${COPY} +fi rm -f ${COPY}.dd/* verbose "$tid: get to directory" |