diff options
-rw-r--r-- | daemon.c | 7 | ||||
-rw-r--r-- | fetchmail.c | 2 |
2 files changed, 1 insertions, 8 deletions
@@ -34,8 +34,6 @@ #include "popclient.h" -static void (*my_termhook)(int); - /****************************************************************** function: sigchld_handler description: Process the SIGCHLD (a.k.a SIGCLD) signal by calling @@ -58,9 +56,6 @@ sigchld_handler () int status; #endif - if (my_termhook) - (*my_termhook)(SIGCHLD); - #if defined(HAVE_WAIT3) while ((pid = wait3(&status, WNOHANG, (struct rusage *) 0)) > 0) ; /* swallow 'em up. */ @@ -101,8 +96,6 @@ void (*termhook)(int); /* if we are started by init (process 1) via /etc/inittab we needn't bother to detach from our process group context */ - my_termhook = termhook; - if (getppid() == 1) goto nottyDetach; diff --git a/fetchmail.c b/fetchmail.c index 8ed8f67b..99a81e68 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -39,7 +39,7 @@ #include "popclient.h" /* release info */ -#define RELEASE_TAG "3.05" +#define RELEASE_TAG "3.1" #ifdef HAVE_PROTOTYPES /* prototypes for internal functions */ |