Moved the is_in_group() function to uidlist.c.
[rsync/rsync.git] / socket.c
index cb15441..a19542f 100644 (file)
--- a/socket.c
+++ b/socket.c
@@ -374,7 +374,8 @@ int is_a_socket(int fd)
 }
 
 
-static RETSIGTYPE sigchld_handler(int UNUSED(val)) {
+static RETSIGTYPE sigchld_handler(UNUSED(int val))
+{
        signal(SIGCHLD, sigchld_handler);
 #ifdef WNOHANG
        while (waitpid(-1, NULL, WNOHANG) > 0) {}