]> 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:21 +0000 (23:52 +0000)
committerMark Andrews <marka@isc.org>
Fri, 21 Jul 2006 23:52:21 +0000 (23:52 +0000)
                        at all times. [RT #15955]

CHANGES
bin/dig/dig.c

diff --git a/CHANGES b/CHANGES
index 8a8197d35ce88aea848335f2752136158ba90c83..ef4630ca053211d792bc54174661beb9439189d0 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 b3c2d428f7bff7e3bf51bc1ff125980364bfca8d..dd801995cc4b1afa2f3cbd0a41069658d8d42d01 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: dig.c,v 1.186.18.25 2006/05/15 06:11:39 marka Exp $ */
+/* $Id: dig.c,v 1.186.18.26 2006/07/21 23:52:21 marka Exp $ */
 
 /*! \file */
 
@@ -1571,7 +1571,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 {