2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

492. [bug] The error messages printed when an IP match list

contained a network address with a nonzero host
                        part where not sufficiently detailed. [RT #365]
This commit is contained in:
Andreas Gustafsson
2000-09-27 20:10:39 +00:00
parent be92e33a44
commit dc8a97366a
2 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
492. [bug] The error messages printed when an IP match list
contained a network address with a nonzero host
part where not sufficiently detailed. [RT #365]
492. [bug] attempting to reload a zone caused the server fail
to shutdown cleanly. [RT #360]

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: confip.c,v 1.36 2000/08/02 21:58:19 gson Exp $ */
/* $Id: confip.c,v 1.37 2000/09/27 20:10:39 gson Exp $ */
#include <config.h>
@@ -350,6 +350,9 @@ dns_c_ipmatchpattern_new(isc_mem_t *mem,
res = checkmask(&address, maskbits);
if (res != ISC_R_SUCCESS) {
isc_log_write(dns_lctx, DNS_LOGCATEGORY_CONFIG,
DNS_LOGMODULE_CONFIG, ISC_LOG_ERROR,
"host portion of network address is not zero");
return (res);
}