- (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.
This commit is contained in:
parent
8686ed7508
commit
5caa78b1b7
|
@ -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
|
||||
|
@ -1957,4 +1960,4 @@
|
|||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||
|
||||
$Id: ChangeLog,v 1.3605 2004/12/20 01:05:08 dtucker Exp $
|
||||
$Id: ChangeLog,v 1.3606 2004/12/20 01:35:42 dtucker Exp $
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue