]> Zhao Yanbai Git Server - minix.git/commitdiff
inet: silence message about exceptions
authorThomas Cort <tcort@minix3.org>
Tue, 2 Apr 2013 02:06:54 +0000 (02:06 +0000)
committerBen Gras <ben@minix3.org>
Thu, 4 Apr 2013 13:06:18 +0000 (15:06 +0200)
. 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

index 9a4021845d3aa112211714171fdd1fd30eae06e7..da12ff6456cd03620d307c87a1e047a32cfa816c 100644 (file)
@@ -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;
 }