]> andersk Git - openssh.git/commitdiff
- (dtucker) [regress/rekey.sh] Touch datafile before filling with dd, since
authordtucker <dtucker>
Mon, 20 Dec 2004 01:35:42 +0000 (01:35 +0000)
committerdtucker <dtucker>
Mon, 20 Dec 2004 01:35:42 +0000 (01:35 +0000)
   on some wacky platforms (eg old AIXes), dd will refuse to create an output
   file if it doesn't exist.

ChangeLog
regress/rekey.sh

index 1eb48df35d4dc678b52d688520ab0a72a0babdee..4f3341f2d85f3cf1c7d4c3d43c91946b2dbb0b18 100644 (file)
--- 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
index 6b7e845eccfc1f624d3cfc7e5b135a714a81d786..3c5f266fc99c386d1606c3f693d02e2f46ad219d 100644 (file)
@@ -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
This page took 0.205819 seconds and 5 git commands to generate.