From: Harlan Stenn Date: Thu, 10 Aug 2006 04:53:59 +0000 (-0400) Subject: Replace the #ifdef DEBUG that got undone by Danny's recent patch X-Git-Tag: NTP_4_2_3P29~1^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=210b015b5f03320d5e8ec2310a6302ee620a516b;p=thirdparty%2Fntp.git Replace the #ifdef DEBUG that got undone by Danny's recent patch bk: 44dabbe7vbaqZudtIwjdRKrnFZKmhQ --- diff --git a/ntpd/ntp_io.c b/ntpd/ntp_io.c index 0031ee6e1..9d15155d0 100644 --- a/ntpd/ntp_io.c +++ b/ntpd/ntp_io.c @@ -2262,7 +2262,11 @@ open_socket( /* * Don't log this under all conditions */ - if (turn_off_reuse == 0 || debug > 1) + if (turn_off_reuse == 0 +#ifdef DEBUG + || debug > 1 +#endif + ) netsyslog(LOG_ERR, buff); closesocket(fd);