summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--regress/sftp-cmds.sh9
2 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 86c85fe1d..64f55c335 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,7 @@
9 - [regress/reconfigure/sh] Make path to sshd fully qualified if required. 9 - [regress/reconfigure/sh] Make path to sshd fully qualified if required.
10 - [regress/rekey.sh] Remove dependence on /dev/zero (not all platforms have 10 - [regress/rekey.sh] Remove dependence on /dev/zero (not all platforms have
11 it). The sparse file will take less disk space too. 11 it). The sparse file will take less disk space too.
12 - [regress/sftp-cmds.sh] Ensure file used for test are readable.
12 13
1320030903 1420030903
14 - (djm) OpenBSD CVS Sync 15 - (djm) OpenBSD CVS Sync
@@ -999,4 +1000,4 @@
999 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 1000 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1000 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 1001 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1001 1002
1002$Id: ChangeLog,v 1.2946 2003/09/04 04:02:56 dtucker Exp $ 1003$Id: ChangeLog,v 1.2947 2003/09/04 04:26:31 dtucker Exp $
diff --git a/regress/sftp-cmds.sh b/regress/sftp-cmds.sh
index 0969dbd46..a7d552972 100644
--- a/regress/sftp-cmds.sh
+++ b/regress/sftp-cmds.sh
@@ -9,7 +9,14 @@ tid="sftp commands"
9 9
10DATA=/bin/ls 10DATA=/bin/ls
11COPY=${OBJ}/copy 11COPY=${OBJ}/copy
12GLOBFILES=`(cd /bin;echo l*)` 12# test that these files are readable!
13for i in `(cd /bin;echo l*)`
14do
15 if [ -r $i ]; then
16 GLOBFILES="$GLOBFILES $i"
17 fi
18done
19
13 20
14# Path with embedded quote 21# Path with embedded quote
15QUOTECOPY=${COPY}".\"blah\"" 22QUOTECOPY=${COPY}".\"blah\""