]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
test for == 0 rather than <= as value is unsigned
authorMark Andrews <marka@isc.org>
Thu, 15 Feb 2018 05:04:01 +0000 (16:04 +1100)
committerMark Andrews <marka@isc.org>
Fri, 16 Feb 2018 06:18:18 +0000 (17:18 +1100)
lib/dns/rrl.c
util/copyrights

index 1757d0221104ef4a7905671427fd137d0b039923..fc2fcb34c7dda077db1562065f16ada43d9b6b44 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2012-2015, 2017  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012-2015, 2017, 2018  Internet Systems Consortium, Inc. ("ISC")
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -774,7 +774,7 @@ add_log_str(isc_buffer_t *lb, const char *str, unsigned int str_len) {
 
        isc_buffer_availableregion(lb, &region);
        if (str_len >= region.length) {
-               if (region.length <= 0)
+               if (region.length == 0U)
                        return;
                str_len = region.length;
        }
index f3294d8519d162df653571276200ce8ca27be720..18f3565e56c9bbd2b2df18c33665f6358ca735c2 100644 (file)
 ./lib/dns/rootns.c                             C       1999,2000,2001,2002,2004,2005,2007,2008,2010,2012,2013,2014,2015,2016,2017
 ./lib/dns/rpz.c                                        C       2011,2012,2013,2014,2015,2016,2017,2018
 ./lib/dns/rriterator.c                         C       2009,2011,2012
-./lib/dns/rrl.c                                        C       2012,2013,2014,2015,2017
+./lib/dns/rrl.c                                        C       2012,2013,2014,2015,2017,2018
 ./lib/dns/sdb.c                                        C       2000,2001,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2018
 ./lib/dns/sdlz.c                               C.PORTION       1999,2000,2001,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018
 ./lib/dns/soa.c                                        C       2000,2001,2004,2005,2007,2009