]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - server.c
aft.c: Remove special case code for playlist mode.
[paraslash.git] / server.c
index d98e9603ced15a27ea1780ffb7ef850e5138c55e..7171c6e2814808ae19132f9a4c199485536bd727 100644 (file)
--- a/server.c
+++ b/server.c
@@ -15,6 +15,7 @@
  *
  */
 
+#include <signal.h>
 #include <sys/types.h>
 #include <dirent.h>
 
@@ -352,7 +353,7 @@ out:
 
 uint32_t afs_socket_cookie;
 static int afs_socket;
-pid_t afs_pid;
+static pid_t afs_pid;
 
 static void init_afs(void)
 {
@@ -443,6 +444,8 @@ static void handle_sighup(void)
        mmd->selector_change = mmd->selector_num; /* do not change selector.. */
        change_selector(); /* .. just reload */
        init_user_list(user_list_file); /* reload user list */
+       if (afs_pid)
+               kill(afs_pid, SIGHUP);
 }
 
 static void status_refresh(void)
@@ -537,8 +540,8 @@ repeat:
                        break;
                case SIGCHLD:
                        for (;;) {
-                               pid = para_reap_child();
-                               if (pid <= 0)
+                               ret = para_reap_child(&pid);
+                               if (ret <= 0)
                                        break;
                                if (pid != afs_pid)
                                        continue;