aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2016-09-22 23:11:34 -0400
committerGreg Hudson <ghudson@mit.edu>2016-09-22 23:12:07 -0400
commitb9c5c7a6b65764f8303248582b2d1929fb656ab7 (patch)
treeb68fc742814c2151ce25713ebf7ce24b8507e59c
parente5c77a11341a79e6af1e5aef7c587a5b75a9e378 (diff)
downloadkrb5-b9c5c7a6b65764f8303248582b2d1929fb656ab7.zip
krb5-b9c5c7a6b65764f8303248582b2d1929fb656ab7.tar.gz
krb5-b9c5c7a6b65764f8303248582b2d1929fb656ab7.tar.bz2
Fix typo in prng.c comment
(The typo was mine, introduced during a final editing pass.)
-rw-r--r--src/lib/crypto/krb/prng.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/crypto/krb/prng.c b/src/lib/crypto/krb/prng.c
index 22948a4..cb9ca9b 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