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

CHANGES
bin/dig/dig.c

diff --git a/CHANGES b/CHANGES
index 6cb8818259bd16605def5251ff2557665c57cebb..9b94492f34eea54d50748656e2f5f08a123e85c5 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 270a2c5ef7091aabbdd3b0549b7c0f70199bf439..20d61491e3ef0fc257b1600bb73d96f4fd2c9579 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: dig.c,v 1.157.2.20 2005/07/04 03:22:02 marka Exp $ */
+/* $Id: dig.c,v 1.157.2.21 2006/07/21 23:53:16 marka Exp $ */
 
 #include <config.h>
 #include <stdlib.h>
@@ -1175,7 +1175,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 {