logger: improve readability [smatch scan]

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2015-08-05 13:23:34 +02:00
parent 7ff635bff4
commit 28bad822c4
1 changed files with 5 additions and 5 deletions

View File

@ -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;
}