summaryrefslogtreecommitdiff
path: root/src/activate/activate.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/activate/activate.c')
-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);