summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-12-20 12:35:42 +1100
committerDarren Tucker <dtucker@zip.com.au>2004-12-20 12:35:42 +1100
commit5caa78b1b7f086329b2102821a1e09512740dd61 (patch)
treef9ff6833a71a46f8880eb7fc2ef507050c1acc46
parent8686ed75081958714f5d7768b5b0b8bcdd86b0ff (diff)
- (dtucker) [regress/rekey.sh] Touch datafile before filling with dd, since
on some wacky platforms (eg old AIXes), dd will refuse to create an output file if it doesn't exist.
-rw-r--r--ChangeLog5
-rw-r--r--regress/rekey.sh1
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c6cf7b386..797ff28bf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
4 prngd is not running. Note that if you have prngd running when OpenSSH is 4 prngd is not running. Note that if you have prngd running when OpenSSH is
5 built, OpenSSL will consider itself internally seeded and rand-helper won't 5 built, OpenSSL will consider itself internally seeded and rand-helper won't
6 be built at all unless explicitly enabled via --with-rand-helper. ok djm@ 6 be built at all unless explicitly enabled via --with-rand-helper. ok djm@
7 - (dtucker) [regress/rekey.sh] Touch datafile before filling with dd, since
8 on some wacky platforms (eg old AIXes), dd will refuse to create an output
9 file if it doesn't exist.
7 10
820041213 1120041213
9 - (dtucker) [contrib/findssh.sh] Clean up on interrupt; from 12 - (dtucker) [contrib/findssh.sh] Clean up on interrupt; from
@@ -1957,4 +1960,4 @@
1957 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 1960 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
1958 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 1961 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
1959 1962
1960$Id: ChangeLog,v 1.3605 2004/12/20 01:05:08 dtucker Exp $ 1963$Id: ChangeLog,v 1.3606 2004/12/20 01:35:42 dtucker Exp $
diff --git a/regress/rekey.sh b/regress/rekey.sh
index 6b7e845ec..3c5f266fc 100644
--- a/regress/rekey.sh
+++ b/regress/rekey.sh
@@ -8,6 +8,7 @@ COPY=${OBJ}/copy
8LOG=${OBJ}/log 8LOG=${OBJ}/log
9 9
10rm -f ${COPY} ${LOG} ${DATA} 10rm -f ${COPY} ${LOG} ${DATA}
11touch ${DATA}
11dd if=/bin/ls${EXEEXT} of=${DATA} bs=1k seek=511 count=1 > /dev/null 2>&1 12dd if=/bin/ls${EXEEXT} of=${DATA} bs=1k seek=511 count=1 > /dev/null 2>&1
12 13
13for s in 16 1k 128k 256k; do 14for s in 16 1k 128k 256k; do