]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
activate: minor fixes
authorLennart Poettering <lennart@poettering.net>
Mon, 8 Feb 2016 18:47:42 +0000 (19:47 +0100)
committerLennart Poettering <lennart@poettering.net>
Wed, 10 Feb 2016 13:32:27 +0000 (14:32 +0100)
src/activate/activate.c

index 3a1d2bae60a5bacb4f0f7fe333ee5fe49b31f69e..559ce33d894a87ebadb013b60b65c394e9b6e90e 100644 (file)
@@ -283,11 +283,9 @@ static int do_accept(const char* name, char **argv, char **envp, int fd) {
         _cleanup_free_ char *local = NULL, *peer = NULL;
         _cleanup_close_ int fd2 = -1;
 
-        fd2 = accept(fd, NULL, NULL);
-        if (fd2 < 0) {
-                log_error_errno(errno, "Failed to accept connection on fd:%d: %m", fd);
-                return fd2;
-        }
+        fd2 = accept4(fd, NULL, NULL, 0);
+        if (fd2 < 0)
+                return log_error_errno(errno, "Failed to accept connection on fd:%d: %m", fd);
 
         getsockname_pretty(fd2, &local);
         getpeername_pretty(fd2, true, &peer);
@@ -301,21 +299,24 @@ static void sigchld_hdl(int sig, siginfo_t *t, void *data) {
         PROTECT_ERRNO;
 
         log_info("Child %d died with code %d", t->si_pid, t->si_status);
+
         /* Wait for a dead child. */
-        waitpid(t->si_pid, NULL, 0);
+        (void) waitpid(t->si_pid, NULL, 0);
 }
 
 static int install_chld_handler(void) {
-        int r;
-        struct sigaction act = {
+        static const struct sigaction act = {
                 .sa_flags = SA_SIGINFO,
                 .sa_sigaction = sigchld_hdl,
         };
 
+        int r;
+
         r = sigaction(SIGCHLD, &act, 0);
         if (r < 0)
-                log_error_errno(errno, "Failed to install SIGCHLD handler: %m");
-        return r;
+                return log_error_errno(errno, "Failed to install SIGCHLD handler: %m");
+
+        return 0;
 }
 
 static void help(void) {