From 28bad822c4516a4365262b6023f8d24858e140f0 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 5 Aug 2015 13:23:34 +0200 Subject: [PATCH] logger: improve readability [smatch scan] Signed-off-by: Karel Zak --- misc-utils/logger.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/misc-utils/logger.c b/misc-utils/logger.c index 181121a29..e4a6c5aa1 100644 --- a/misc-utils/logger.c +++ b/misc-utils/logger.c @@ -243,11 +243,11 @@ static int unix_socket(struct logger_ctl *ctl, const char *path, const int socke if (i == 0) { if (ctl->unix_socket_errors) err(EXIT_FAILURE, _("socket %s"), path); - else - /* openlog(3) compatibility, socket errors are - * not reported, but ignored silently */ - ctl->noact = 1; - return -1; + + /* openlog(3) compatibility, socket errors are + * not reported, but ignored silently */ + ctl->noact = 1; + return -1; } return fd; }