socsvn commit: r224642 - soc2011/kibab/freebsd-src-head/contrib/bind9/lib/lwres

kibab at FreeBSD.org kibab at FreeBSD.org
Tue Jul 26 08:22:21 UTC 2011


Author: kibab
Date: Tue Jul 26 08:22:18 2011
New Revision: 224642
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224642

Log:
  Remove debug prints

Modified:
  soc2011/kibab/freebsd-src-head/contrib/bind9/lib/lwres/context.c

Modified: soc2011/kibab/freebsd-src-head/contrib/bind9/lib/lwres/context.c
==============================================================================
--- soc2011/kibab/freebsd-src-head/contrib/bind9/lib/lwres/context.c	Tue Jul 26 08:17:14 2011	(r224641)
+++ soc2011/kibab/freebsd-src-head/contrib/bind9/lib/lwres/context.c	Tue Jul 26 08:22:18 2011	(r224642)
@@ -353,7 +353,6 @@
 #endif
 
 	if(glob_socket==0) {
-		printf("Creating new socket!!!\n");
 		s = socket(domain, SOCK_DGRAM, IPPROTO_UDP);
 		if (s < 0) {
 #ifdef WIN32
@@ -383,7 +382,6 @@
 		}
 	glob_socket = s;
 	} else {
-		printf("Reusing existing socket!\n");
 		s = glob_socket;
 	}
 	ctx->sock = s;


More information about the svn-soc-all mailing list