diff options
author | 2000-10-22 01:08:52 +0000 | |
---|---|---|
committer | 2000-10-22 01:08:52 +0000 | |
commit | ef8c5e4517dac83db88e769e5b0de3ed40847474 (patch) | |
tree | 9d36b8a647560ea219f100b5c0ce22eb27e0406e | |
parent | Fix noprint/print/octal options; from NetBSD. (diff) | |
download | wireguard-openbsd-ef8c5e4517dac83db88e769e5b0de3ed40847474.tar.xz wireguard-openbsd-ef8c5e4517dac83db88e769e5b0de3ed40847474.zip |
oops; deraadt@ ok
-rw-r--r-- | sys/dev/rnd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/rnd.c b/sys/dev/rnd.c index 4f750f7af2d..fa0537ebb73 100644 --- a/sys/dev/rnd.c +++ b/sys/dev/rnd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rnd.c,v 1.44 2000/10/20 03:30:05 mickey Exp $ */ +/* $OpenBSD: rnd.c,v 1.45 2000/10/22 01:08:52 mickey Exp $ */ /* * random.c -- A strong random number generator @@ -1061,7 +1061,6 @@ randomioctl(dev, cmd, data, flag, p) ret = EPERM; else { cnt = *(u_int *)data; - printf("%d\n", cnt); s = splhigh(); random_state.entropy_count += cnt; if (random_state.entropy_count > POOLBITS) |