From: Dave Hart Date: Sat, 27 Aug 2011 07:07:45 +0000 (+0000) Subject: Fix copy/paste error (SIGIO -> SIGPOLL) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3305a3cb7eea367c73d202f43b979b5c313dbf9e;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 d020c12c26..22f92e7141 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);