mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 18:52:07 -04:00
2174. [bug] I/O errors should always be fatal when reading
master files. [RT #16825]
This commit is contained in:
parent
7a253b705c
commit
1de5f8f809
2 changed files with 6 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
2174. [bug] I/O errors should always be fatal when reading
|
||||
master files. [RT #16825]
|
||||
|
||||
2173. [port] win32: When compiling with MSVS 2005 SP1 we also
|
||||
need to ship Microsoft.VC80.MFCLOC.
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: master.c,v 1.161 2006/12/07 23:57:59 marka Exp $ */
|
||||
/* $Id: master.c,v 1.162 2007/05/02 04:06:24 marka Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -276,7 +276,8 @@ loadctx_destroy(dns_loadctx_t *lctx);
|
|||
|
||||
#define MANYERRS(lctx, result) \
|
||||
((result != ISC_R_SUCCESS) && \
|
||||
((lctx)->options & DNS_MASTER_MANYERRORS) != 0)
|
||||
(result != ISC_R_IOERROR) && \
|
||||
((lctx)->options & DNS_MASTER_MANYERRORS) != 0)
|
||||
|
||||
#define SETRESULT(lctx, r) \
|
||||
do { \
|
||||
|
|
|
|||
Loading…
Reference in a new issue