random-util: fix indentation

This commit is contained in:
Lennart Poettering 2018-11-07 18:52:41 +01:00
parent d68ccc0841
commit afff8f16ae
1 changed files with 2 additions and 2 deletions

View File

@ -97,8 +97,8 @@ int genuine_random_bytes(void *p, size_t n, bool high_quality_required) {
have_syscall = true;
return -EIO;
} else if (errno == ENOSYS)
/* We lack the syscall, continue with reading from /dev/urandom. */
have_syscall = false;
/* We lack the syscall, continue with reading from /dev/urandom. */
have_syscall = false;
else if (errno == EAGAIN) {
/* The kernel has no entropy whatsoever. Let's remember to
* use the syscall the next time again though.