From: dtucker Date: Mon, 20 Dec 2004 01:35:42 +0000 (+0000) Subject: - (dtucker) [regress/rekey.sh] Touch datafile before filling with dd, since X-Git-Tag: V_4_0_P1~108 X-Git-Url: http://andersk.mit.edu/gitweb/openssh.git/commitdiff_plain/0a3ea6cc4779667e1a6a12ddbffda4ba085150a2 - (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. --- diff --git a/ChangeLog b/ChangeLog index 1eb48df3..4f3341f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,9 @@ prngd is not running. Note that if you have prngd running when OpenSSH is built, OpenSSL will consider itself internally seeded and rand-helper won't be built at all unless explicitly enabled via --with-rand-helper. ok djm@ + - (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. 20041213 - (dtucker) [contrib/findssh.sh] Clean up on interrupt; from diff --git a/regress/rekey.sh b/regress/rekey.sh index 6b7e845e..3c5f266f 100644 --- a/regress/rekey.sh +++ b/regress/rekey.sh @@ -8,6 +8,7 @@ COPY=${OBJ}/copy LOG=${OBJ}/log rm -f ${COPY} ${LOG} ${DATA} +touch ${DATA} dd if=/bin/ls${EXEEXT} of=${DATA} bs=1k seek=511 count=1 > /dev/null 2>&1 for s in 16 1k 128k 256k; do