diff src/protocols/rendezvous/mdns_cache.c @ 8842:ad3633f92f91

[gaim-migrate @ 9609] Just clean up one or four things. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 29 Apr 2004 02:42:31 +0000
parents 01c3db200c8f
children e4a27c9aec4c
line wrap: on
line diff
--- a/src/protocols/rendezvous/mdns_cache.c	Wed Apr 28 05:14:20 2004 +0000
+++ b/src/protocols/rendezvous/mdns_cache.c	Thu Apr 29 02:42:31 2004 +0000
@@ -24,7 +24,6 @@
  */
 
 #include "internal.h"
-#include "debug.h"
 
 #include "mdns.h"
 #include "mdns_cache.h"
@@ -59,7 +58,6 @@
 
 	mdns_cache_remove(rr->name, rr->type);
 
-	printf("caching %d\n", rr->type);
 	new = mdns_copy_rr(rr);
 	rrs = g_slist_prepend(rrs, new);
 }
@@ -94,12 +92,10 @@
 	ResourceRecord *cur;
 
 	g_return_if_fail(q != NULL);
-	printf("query for q->type=%d, q->name=%s\n", q->type, q->name);
 
 	for (slist = rrs; slist != NULL; slist = slist->next) {
 		cur = slist->data;
 		if (((q->type == RENDEZVOUS_RRTYPE_ALL) || (q->type == cur->type)) && (!strcmp(q->name, cur->name))) {
-			printf("responding to cur->type=%d, cur->name=%s\n", cur->type, cur->name);
 			mdns_send_rr(fd, cur);
 		}
 	}