. 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
/* 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;
}