From: Dave Hart Date: Sat, 27 Aug 2011 07:07:45 +0000 (+0000) Subject: Fix copy/paste error (SIGIO -> SIGPOLL) X-Git-Tag: NTP_4_2_7P209~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16cc75dce559bc03e0f3e667d81324d6b9e123bd;p=thirdparty%2Fntp.git Fix copy/paste error (SIGIO -> SIGPOLL) bk: 4e5897c1BQ2HWNc8qyJDCDWBm-ZbZw --- diff --git a/libntp/work_thread.c b/libntp/work_thread.c index d020c12c2..22f92e714 100644 --- a/libntp/work_thread.c +++ b/libntp/work_thread.c @@ -503,10 +503,10 @@ block_thread_signals( # ifdef HAVE_SIGNALED_IO # ifdef SIGIO sigaddset(&block, SIGIO); -# endif /* SIGIO */ -# ifdef SIGIO +# endif +# ifdef SIGPOLL sigaddset(&block, SIGPOLL); -# endif /* SIGIO */ +# endif # endif /* HAVE_SIGNALED_IO */ sigaddset(&block, SIGALRM); sigaddset(&block, MOREDEBUGSIG);