diff options
author | Renato Botelho <renato@netgate.com> | 2016-05-19 10:45:17 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-05-19 10:45:17 -0300 |
commit | 57a447a9c3cb69fb2e4f874104327cdc3203313a (patch) | |
tree | 5f882a4db4469e125c743f84b4f8998df4f015c3 /sys/dev/random/fortuna.c | |
parent | 5cf4da15d7c435594db5cc482d961f98986d0808 (diff) | |
parent | 0412106b46a9cffa2790ddc17339d96c0dc607c9 (diff) | |
download | FreeBSD-src-57a447a9c3cb69fb2e4f874104327cdc3203313a.zip FreeBSD-src-57a447a9c3cb69fb2e4f874104327cdc3203313a.tar.gz |
Merge remote-tracking branch 'origin/master' into devel-11
Diffstat (limited to 'sys/dev/random/fortuna.c')
-rw-r--r-- | sys/dev/random/fortuna.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/random/fortuna.c b/sys/dev/random/fortuna.c index 3ae0fe0..e300c6f 100644 --- a/sys/dev/random/fortuna.c +++ b/sys/dev/random/fortuna.c @@ -234,7 +234,7 @@ random_fortuna_process_event(struct harvest_event *event) pl = event->he_destination % RANDOM_FORTUNA_NPOOLS; randomdev_hash_iterate(&fortuna_state.fs_pool[pl].fsp_hash, event, sizeof(*event)); /*- - * Don't wrap the length. Doing the the hard way so as not to wrap at MAXUINT. + * Don't wrap the length. Doing this the hard way so as not to wrap at MAXUINT. * This is a "saturating" add. * XXX: FIX!!: We don't actually need lengths for anything but fs_pool[0], * but it's been useful debugging to see them all. |