From afff8f16ae5f5a5dfaa1db226f755c8953dab382 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 7 Nov 2018 18:52:41 +0100 Subject: [PATCH] random-util: fix indentation --- src/basic/random-util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/basic/random-util.c b/src/basic/random-util.c index 3989bb9dc61..b6d1cfd1ca6 100644 --- a/src/basic/random-util.c +++ b/src/basic/random-util.c @@ -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. -- 2.47.3