From: Greg Hudson Date: Fri, 23 Sep 2016 03:11:34 +0000 (-0400) Subject: Fix typo in prng.c comment X-Git-Tag: krb5-1.15-beta1~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9c5c7a6b65764f8303248582b2d1929fb656ab7;p=thirdparty%2Fkrb5.git Fix typo in prng.c comment (The typo was mine, introduced during a final editing pass.) --- diff --git a/src/lib/crypto/krb/prng.c b/src/lib/crypto/krb/prng.c index 22948a4971..cb9ca9b983 100644 --- a/src/lib/crypto/krb/prng.c +++ b/src/lib/crypto/krb/prng.c @@ -104,9 +104,9 @@ k5_get_os_entropy(unsigned char *buf, size_t len, int strong) while (len > 0) { /* - * Pull from the /dev/urandom pool, but it to have been seeded. This - * ensures strong randomness while only blocking during first system - * boot. + * Pull from the /dev/urandom pool, but require it to have been seeded. + * This ensures strong randomness while only blocking during first + * system boot. * * glibc does not currently provide a binding for getrandom: * https://sourceware.org/bugzilla/show_bug.cgi?id=17252