chiark / gitweb /
treewide: more log_*_errno + return simplifications
[elogind.git] / src / activate / activate.c
index a17babe076d9a699f02c9c9beea7512d68678f4f..909ea24cc0f93fb2e6ea9293b376b38cc4ccacf7 100644 (file)
@@ -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);