diff options
author | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2017-11-26 17:06:47 +0000 |
---|---|---|
committer | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2017-11-26 17:06:47 +0000 |
commit | 289047522ac56d8448c11cece23de2cb8ca631f8 (patch) | |
tree | cc19fec09ed72049c245415dd8d4e9bee26c719e /sys | |
parent | 3ed83a975f8c1dc28c0ad968287b2f33eac71b68 (diff) |
Don't mention XOR as a mix-in function since addition is done since 1.180
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/rnd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/rnd.c b/sys/dev/rnd.c index 613bc93d421..5e44048aa1b 100644 --- a/sys/dev/rnd.c +++ b/sys/dev/rnd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rnd.c,v 1.194 2017/11/19 13:43:06 mikeb Exp $ */ +/* $OpenBSD: rnd.c,v 1.195 2017/11/26 17:06:46 mikeb Exp $ */ /* * Copyright (c) 2011 Theo de Raadt. @@ -266,7 +266,7 @@ rnd_put(void) { u_int idx = rnd_event_prod++; - /* allow wrapping. caller will use xor. */ + /* allow wrapping. caller will mix it in. */ return &rnd_event_space[idx & (QEVLEN - 1)]; } |