From 587d5fc63b5ff4d566419b897a56b2fff92dfd34 Mon Sep 17 00:00:00 2001 From: Mark Murray Date: Sun, 18 Jul 2004 09:07:58 +0000 Subject: Start the entropy device insecure/unblocked. I'll be handing over responsibility for critical randomness requirements (like sshd) to rc.d/* Requested by: many --- sys/dev/random/randomdev.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'sys/dev/random/randomdev.c') diff --git a/sys/dev/random/randomdev.c b/sys/dev/random/randomdev.c index 28cddd9af5b8..007bcc18ac8f 100644 --- a/sys/dev/random/randomdev.c +++ b/sys/dev/random/randomdev.c @@ -108,9 +108,7 @@ random_read(struct cdev *dev __unused, struct uio *uio, int flag) if (flag & IO_NDELAY) error = EWOULDBLOCK; else { - /* No complaints please. This is temporary! */ - printf("Entropy device is blocking. " - "Dance fandango on keyboard to unblock.\n"); + printf("Entropy device is blocking.\n"); error = tsleep(&random_systat, PUSER | PCATCH, "block", 0); } -- cgit v1.3