From ebb95bff7e9fd30511e3ea6674591633e74c9362 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Mon, 20 Mar 2000 01:39:38 +0000 Subject: [PATCH] @@ -1,3 +1,9 @@ +adns (0.8) BETA; urgency=low + + * Spurious `server failure on unidentifiable query' warning suppressed. + + -- + adns (0.7) BETA; urgency=medium Organization: Straylight/Edgeware From: ian * New adns_submit_reverse_any for eg RBL lookups, and corresponding --- src/reply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reply.c b/src/reply.c index 586aff0..f1dabe1 100644 --- a/src/reply.c +++ b/src/reply.c @@ -119,7 +119,7 @@ void adns__procdgram(adns_state ads, const byte *dgram, int dglen, return; case rcode_servfail: if (qu) adns__query_fail(qu,adns_s_rcodeservfail); - else adns__warn(ads,serv,qu,"server failure on unidentifiable query"); + else adns__debug(ads,serv,qu,"server failure on unidentifiable query"); return; case rcode_notimp: adns__warn(ads,serv,qu,"server claims not to implement our query"); -- [mdw]