From f05ad905a8187faef1af0c8c4da25054ad1c10f9 Mon Sep 17 00:00:00 2001 From: Thomas Cort Date: Tue, 2 Apr 2013 02:06:54 +0000 Subject: [PATCH] inet: silence message about exceptions . inet: silence message about exceptions not being implemented for select(UDP) This message generates a lot of noise with openntpd. Hide it unless DEBUG is turned on. Change-Id: I1527a9ca2583601d6087456062b4f675c80dd711 --- servers/inet/generic/udp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/servers/inet/generic/udp.c b/servers/inet/generic/udp.c index 9a4021845..da12ff645 100644 --- a/servers/inet/generic/udp.c +++ b/servers/inet/generic/udp.c @@ -316,10 +316,12 @@ unsigned operations; /* Should handle special case when the interface is down */ resops |= SR_SELECT_WRITE; } +#if DEBUG == 1 if (operations & SR_SELECT_EXCEPTION) { printf("udp_select: not implemented for exceptions\n"); } +#endif return resops; } -- 2.44.0