diff options
Diffstat (limited to '')
-rw-r--r-- | cipher/rndunix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher/rndunix.c b/cipher/rndunix.c index a44d0950b..c005afba4 100644 --- a/cipher/rndunix.c +++ b/cipher/rndunix.c @@ -627,7 +627,7 @@ start_gatherer( int pipefd ) while( write( pipefd, &msg, sizeof(msg) ) != sizeof(msg) ) { if( errno == EINTR ) continue; - if( errno = EAGAIN ) { + if( errno == EAGAIN ) { struct timeval tv; tv.tv_sec = 0; tv.tv_usec = 50000; |