]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
2074. [bug] dns_request_create2(), dns_request_create3(),
authorMark Andrews <marka@isc.org>
Mon, 21 Aug 2006 00:35:36 +0000 (00:35 +0000)
committerMark Andrews <marka@isc.org>
Mon, 21 Aug 2006 00:35:36 +0000 (00:35 +0000)
                        dns_request_createraw2() and dns_request_createraw3()
                        failed to send multiple UDP requests. [RT #16349]

CHANGES
lib/dns/request.c

diff --git a/CHANGES b/CHANGES
index c408c221a2349aa93060058bae1fcb4572469090..c7b49f822f7b65440cfb0ed3e6e73011e9d79690 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+2074.  [bug]           dns_request_create2(), dns_request_create3(),
+                       dns_request_createraw2() and dns_request_createraw3()
+                       failed to send multiple UDP requests. [RT #16349]
+
 2073.  [bug]           Incorrect semantics check for update policy "wildcard".
                        [RT #16353]
 
index 49af3ce6fdda8bc4797d2bbb871de0e83662aecd..58a93fd7ed21d079297949ed564cc4a3449dd27c 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: request.c,v 1.76 2006/01/04 23:50:24 marka Exp $ */
+/* $Id: request.c,v 1.77 2006/08/21 00:35:36 marka Exp $ */
 
 /*! \file */
 
@@ -705,6 +705,7 @@ dns_request_createraw3(dns_requestmgr_t *requestmgr, isc_buffer_t *msgbuf,
                if (udptimeout == 0)
                        udptimeout = 1;
        }
+       request->udpcount = udpretries;
 
        /*
         * Create timer now.  We will set it below once.
@@ -902,6 +903,7 @@ dns_request_createvia3(dns_requestmgr_t *requestmgr, dns_message_t *message,
                if (udptimeout == 0)
                        udptimeout = 1;
        }
+       request->udpcount = udpretries;
 
        /*
         * Create timer now.  We will set it below once.