]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
ChangeLog ntp_io.c:
authorFrank Kardel <kardel@ntp.org>
Fri, 2 Aug 2013 06:08:47 +0000 (06:08 +0000)
committerFrank Kardel <kardel@ntp.org>
Fri, 2 Aug 2013 06:08:47 +0000 (06:08 +0000)
  [Bug 2425] compile io_handler() in ntp_io.c unconditionally

bk: 51fb4cefMVZaomy_3pdfk62gEVBqXA

ChangeLog
ntpd/ntp_io.c

index cf12b292ccba9d561ab57a3c5aef97e2a2e815e8..2a38f0377255124faaf6e2f3f12d3aa0eded718f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,4 @@
+* [Bug 2425] compile io_handler() in ntp_io.c unconditionally
 * [Bug 2448] Fix checks for configure --with-stack-limit and --with-memlock
   values.
 (4.2.7p378) 2013/08/01 Released by Harlan Stenn <stenn@ntp.org>
index 5bbbeb758b3afb9f79e1f4b4b0f3f96731d9ebce..58adc20a121dd525ec37ffb499f0aff366d8340d 100644 (file)
@@ -4620,6 +4620,13 @@ init_async_notifications()
                "Listening on routing socket on fd #%d for interface updates",
                fd);
 }
+#else
+/* HAS_ROUTING_SOCKET not defined */
+static void
+init_async_notifications(void)
+{
+}
+#endif
 
 void
 io_handler(void)
@@ -4682,11 +4689,3 @@ io_handler(void)
 #  endif /* HAVE_SIGNALED_IO */
 }
 
-
-#else
-/* HAS_ROUTING_SOCKET not defined */
-static void
-init_async_notifications(void)
-{
-}
-#endif