]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
2056. [bug] dig: ixfr= was not being treated case insensitively
authorMark Andrews <marka@isc.org>
Fri, 21 Jul 2006 23:52:29 +0000 (23:52 +0000)
committerMark Andrews <marka@isc.org>
Fri, 21 Jul 2006 23:52:29 +0000 (23:52 +0000)
                        at all times. [RT #15955]

CHANGES
bin/dig/dig.c

diff --git a/CHANGES b/CHANGES
index 18c56fced8a839328df9a6d0d533c390f5a3a51d..84bc61f0136f36c5727c2d37f32f14a53f85ab0a 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+2056.  [bug]           dig: ixfr= was not being treated case insensitively
+                       at all times. [RT #15955]
+
 2055.  [bug]           Missing goto after dropping multicast query.
                        [RT #15944]
 
index 52df6608685bf5010e7a669ce83a50d4c5a64702..88d3a91bc2f417b36237be78b9f6465e21651b63 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: dig.c,v 1.157.2.13.2.29 2005/10/14 01:38:40 marka Exp $ */
+/* $Id: dig.c,v 1.157.2.13.2.30 2006/07/21 23:52:29 marka Exp $ */
 
 #include <config.h>
 #include <stdlib.h>
@@ -1437,7 +1437,7 @@ parse_args(isc_boolean_t is_batchfile, isc_boolean_t config_only,
                         * Anything which isn't an option
                         */
                        if (open_type_class) {
-                               if (strncmp(rv[0], "ixfr=", 5) == 0) {
+                               if (strncasecmp(rv[0], "ixfr=", 5) == 0) {
                                        rdtype = dns_rdatatype_ixfr;
                                        result = ISC_R_SUCCESS;
                                } else {