mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 14:35:26 +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:
4
CHANGES
4
CHANGES
@@ -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
|
492. [bug] attempting to reload a zone caused the server fail
|
||||||
to shutdown cleanly. [RT #360]
|
to shutdown cleanly. [RT #360]
|
||||||
|
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* 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>
|
#include <config.h>
|
||||||
|
|
||||||
@@ -350,6 +350,9 @@ dns_c_ipmatchpattern_new(isc_mem_t *mem,
|
|||||||
res = checkmask(&address, maskbits);
|
res = checkmask(&address, maskbits);
|
||||||
|
|
||||||
if (res != ISC_R_SUCCESS) {
|
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);
|
return (res);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user