Module Name: src Committed By: martin Date: Thu Nov 27 11:20:36 UTC 2014
Modified Files: src/external/apache2/mDNSResponder/dist/mDNSCore [netbsd-7]: DNSCommon.c Log Message: Pull up following revision(s) (requested by jmcneill in ticket #267): external/apache2/mDNSResponder/dist/mDNSCore/DNSCommon.c: revision 1.5 Change the "mDNSPlatformRawTime went backwards" message from LogMsg to debugf. It's not that interesting, as it is comparing the results of two gettimeofday() calls. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.4.4.1 \ src/external/apache2/mDNSResponder/dist/mDNSCore/DNSCommon.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/external/apache2/mDNSResponder/dist/mDNSCore/DNSCommon.c diff -u src/external/apache2/mDNSResponder/dist/mDNSCore/DNSCommon.c:1.4 src/external/apache2/mDNSResponder/dist/mDNSCore/DNSCommon.c:1.4.4.1 --- src/external/apache2/mDNSResponder/dist/mDNSCore/DNSCommon.c:1.4 Mon Mar 31 23:26:30 2014 +++ src/external/apache2/mDNSResponder/dist/mDNSCore/DNSCommon.c Thu Nov 27 11:20:36 2014 @@ -2697,7 +2697,7 @@ mDNSexport void mDNS_Lock_(mDNS *const m if (m->timenow_last - m->timenow > 0) { m->timenow_adjust += m->timenow_last - m->timenow; - LogMsg("%s: mDNSPlatformRawTime went backwards by %ld ticks; setting correction factor to %ld", functionname, m->timenow_last - m->timenow, m->timenow_adjust); + debugf("%s: mDNSPlatformRawTime went backwards by %ld ticks; setting correction factor to %ld", functionname, m->timenow_last - m->timenow, m->timenow_adjust); m->timenow = m->timenow_last; } m->timenow_last = m->timenow;