diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | regress/sftp-cmds.sh | 9 |
2 files changed, 10 insertions, 2 deletions
@@ -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 | ||
13 | 20030903 | 14 | 20030903 |
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 | ||
10 | DATA=/bin/ls | 10 | DATA=/bin/ls |
11 | COPY=${OBJ}/copy | 11 | COPY=${OBJ}/copy |
12 | GLOBFILES=`(cd /bin;echo l*)` | 12 | # test that these files are readable! |
13 | for i in `(cd /bin;echo l*)` | ||
14 | do | ||
15 | if [ -r $i ]; then | ||
16 | GLOBFILES="$GLOBFILES $i" | ||
17 | fi | ||
18 | done | ||
19 | |||
13 | 20 | ||
14 | # Path with embedded quote | 21 | # Path with embedded quote |
15 | QUOTECOPY=${COPY}".\"blah\"" | 22 | QUOTECOPY=${COPY}".\"blah\"" |