Fix a typo in r356667 comment

No functional change.

Reported by:	bdragon
Approved by:	csprng(markm), earlier version
X-MFC-With:	r356667
This commit is contained in:
Conrad Meyer 2020-01-12 23:52:16 +00:00
parent 86def3dcd6
commit 365cd52245

View File

@ -69,7 +69,7 @@ kern_getrandom(struct thread *td, void *user_buf, size_t buflen,
* blocking, when the Linux API does not block. * blocking, when the Linux API does not block.
* *
* 2. Alternatively, we could treat GRND_INSECURE requests as requests * 2. Alternatively, we could treat GRND_INSECURE requests as requests
* for GRND_NONBLOCk. Here, the surprising result for Linux programs * for GRND_NONBLOCK. Here, the surprising result for Linux programs
* is that invocations with unseeded random(4) will produce EAGAIN, * is that invocations with unseeded random(4) will produce EAGAIN,
* rather than garbage. * rather than garbage.
* *