mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
parse the listen-on-v6 statement, not listen-on a second time.
This commit is contained in:
parent
53aed64e0f
commit
8772b86369
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: server.c,v 1.294 2001/03/05 17:20:48 halley Exp $ */
|
||||
/* $Id: server.c,v 1.295 2001/03/06 01:57:19 bwelling Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -1692,7 +1692,7 @@ load_configuration(const char *filename, ns_server_t *server,
|
|||
cfg_obj_t *clistenon = NULL;
|
||||
ns_listenlist_t *listenon = NULL;
|
||||
|
||||
(void)cfg_map_get(options, "listen-on", &clistenon);
|
||||
(void)cfg_map_get(options, "listen-on-v6", &clistenon);
|
||||
if (clistenon != NULL) {
|
||||
result = ns_listenlist_fromconfig(clistenon,
|
||||
config,
|
||||
|
|
|
|||
Loading…
Reference in a new issue