Fix the build after breaking it in r285549.

I performed the commit on a different system as where I wrote the
change. After pulling in the change from Phabricator, I didn't notice
that a single chunk did not apply.

Approved by:	secteam (implicit, as intended change was approved)
Pointy hat to:	me
This commit is contained in:
Ed Schouten 2015-07-14 20:45:24 +00:00
parent 838bff69e3
commit bc41a24735
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=285573

View File

@ -168,7 +168,7 @@ read_random_uio(struct uio *uio, bool nonblock)
/* (Un)Blocking logic */
error = 0;
while (!random_alg_context.ra_seeded()) {
if (flags & O_NONBLOCK) {
if (nonblock) {
error = EWOULDBLOCK;
break;
}