summaryrefslogtreecommitdiff
path: root/src/activate
diff options
context:
space:
mode:
authorMichal Schmidt <mschmidt@redhat.com>2014-11-28 18:23:20 +0100
committerMichal Schmidt <mschmidt@redhat.com>2014-11-28 18:24:30 +0100
commit23bbb0de4e3f85d9704a5c12a5afa2dfa0159e41 (patch)
tree28e66fb86dd0cffc3a3cca3cf234cb52c3b64ad3 /src/activate
parent5e03c6e3b517286bbd65b48d88f60e5b83721894 (diff)
treewide: more log_*_errno + return simplifications
Diffstat (limited to 'src/activate')
-rw-r--r--src/activate/activate.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/activate/activate.c b/src/activate/activate.c
index a17babe076..909ea24cc0 100644
--- a/src/activate/activate.c
+++ b/src/activate/activate.c
@@ -100,8 +100,7 @@ static int open_sockets(int *epoll_fd, bool accept) {
fd = make_socket_fd(LOG_DEBUG, *address, SOCK_STREAM | (arg_accept*SOCK_CLOEXEC));
if (fd < 0) {
log_open();
- log_error_errno(fd, "Failed to open '%s': %m", *address);
- return fd;
+ return log_error_errno(fd, "Failed to open '%s': %m", *address);
}
assert(fd == SD_LISTEN_FDS_START + count);