From 3107493c971bc11e09649a448282331f697dfb78 Mon Sep 17 00:00:00 2001 From: Niels Provos Date: Mon, 20 May 2002 21:51:53 +0000 Subject: [PATCH] signal fix from dugsong@monkey.org svn:r25 --- select.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/select.c b/select.c index e89f807f..4cd77c63 100644 --- a/select.c +++ b/select.c @@ -175,7 +175,8 @@ select_dispatch(void *arg, struct timeval *tv) log_error("select"); return (-1); } - + + signal_process(); return (0); } @@ -203,8 +204,6 @@ select_dispatch(void *arg, struct timeval *tv) sop->event_fds = maxfd; - signal_process(); - return (0); }