diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2018-04-28 15:45:00 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2018-04-28 15:45:00 +0000 |
commit | d2aaab80e37b4e76e5cd539983916e5d7dbaf773 (patch) | |
tree | e0d12c3bee51150c5e294631e23df47429d120d4 /sys/kern/tty.c | |
parent | 88c894b365edc9ba3d99f1dba14020c90bf81e72 (diff) |
replace add_*_randomness with enqueue_randomness()
this gets rid of the source annotation which doesn't really add
anything other than adding complexitiy. randomess is generally
good enough that the few extra bits that the source type would
add are not worth it.
ok mikeb@ deraadt@
Diffstat (limited to 'sys/kern/tty.c')
-rw-r--r-- | sys/kern/tty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c index 1a562b50f99..f030029cc05 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.138 2018/04/28 03:13:04 visa Exp $ */ +/* $OpenBSD: tty.c,v 1.139 2018/04/28 15:44:59 jasper Exp $ */ /* $NetBSD: tty.c,v 1.68.4.2 1996/06/06 16:04:52 thorpej Exp $ */ /*- @@ -237,7 +237,7 @@ ttyinput(int c, struct tty *tp) int i, error; int s; - add_tty_randomness(tp->t_dev << 8 | c); + enqueue_randomness(tp->t_dev << 8 | c); /* * If receiver is not enabled, drop it. */ |