mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 20:12:06 -04:00
sanitizer stuff
This commit is contained in:
parent
3517415542
commit
7d34762a96
1 changed files with 5 additions and 5 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: lwresd.c,v 1.17 2000/10/05 22:27:46 bwelling Exp $ */
|
||||
/* $Id: lwresd.c,v 1.18 2000/10/10 23:05:01 bwelling Exp $ */
|
||||
|
||||
/*
|
||||
* Main program for the Lightweight Resolver Daemon.
|
||||
|
|
@ -194,9 +194,9 @@ ns_lwresd_parseresolvconf(isc_mem_t *mctx, dns_c_ctx_t **ctxp) {
|
|||
}
|
||||
#ifndef NOMINUM_PUBLIC
|
||||
result = dns_c_iplist_append(forwarders, sa, NULL);
|
||||
#else
|
||||
#else /* NOMINUM_PUBLIC */
|
||||
result = dns_c_iplist_append(forwarders, sa);
|
||||
#endif
|
||||
#endif /* NOMINUM_PUBLIC */
|
||||
if (result != ISC_R_SUCCESS)
|
||||
goto cleanup;
|
||||
}
|
||||
|
|
@ -250,9 +250,9 @@ ns_lwresd_parseresolvconf(isc_mem_t *mctx, dns_c_ctx_t **ctxp) {
|
|||
goto cleanup;
|
||||
#ifndef NOMINUM_PUBLIC
|
||||
result = dns_c_iplist_append(locallist, sa, NULL);
|
||||
#else
|
||||
#else /* NOMINUM_PUBLIC */
|
||||
result = dns_c_iplist_append(locallist, sa);
|
||||
#endif
|
||||
#endif /* NOMINUM_PUBLIC */
|
||||
if (result != ISC_R_SUCCESS)
|
||||
goto cleanup;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue