unbreak regress/sbin/newfs
authorsemarie <semarie@openbsd.org>
Wed, 14 Oct 2015 13:22:56 +0000 (13:22 +0000)
committersemarie <semarie@openbsd.org>
Wed, 14 Oct 2015 13:22:56 +0000 (13:22 +0000)
/dev/prandom is no more since Nov 30, 2008

OK otto@

regress/sbin/newfs/checknewfs

index c659905..99aff12 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/ksh
-#      $OpenBSD: checknewfs,v 1.4 2011/04/18 16:52:11 thib Exp $
+#      $OpenBSD: checknewfs,v 1.5 2015/10/14 13:22:56 semarie Exp $
 # Written by Otto Moerbeek, 2007,  Public domain
 
 
@@ -12,7 +12,7 @@ trap 'cleanup' INT
 
 dotest() {
        image=$(mktemp -t imageXXXXXXXXXX);
-       dd if=/dev/prandom of=$image bs=512 count=$1 2>/dev/null &&
+       dd if=/dev/random of=$image bs=512 count=$1 2>/dev/null &&
        vnconfig vnd0 $image &&
        disklabel -w vnd0 $2 &&
        newfs $3 /dev/rvnd0a