gets reset after each SIGHUP, since this does not happen automatically
in System V's signal handling system.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10631
dc483132-0cff-0310-8789-
dd5450dbe970
+Sat Jul 11 01:38:05 1998 Geoffrey King <gjking@mit.edu>
+
+ * main.c: Added a call to signal() in request_hup()
+ so that the signal handler gets reset after
+ each SIGHUP, since this does not happen
+ automatically in System V's signal handling
+ system.
+
Wed Jul 8 04:36:28 1998 Geoffrey King <gjking@mit.edu>
* extern.h: Added declaration for new variable
int signo;
{
signal_requests_hup = 1;
+#ifndef POSIX_SIGNALS
+ signal(SIGHUP, request_hup); /* System V's signal() requires
+ resetting each time */
+#endif
#ifdef POSIX_SIGTYPE
return;