From dc1e6109c8bcc21831defd443fcf42427706c642 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 4 Jun 2011 07:59:54 +1000 Subject: s4-ipv6: enable IPv6 by default it now passes all tests --- source4/lib/socket/interface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/lib/socket') diff --git a/source4/lib/socket/interface.c b/source4/lib/socket/interface.c index 00550a9ed4..96cee2fbe6 100644 --- a/source4/lib/socket/interface.c +++ b/source4/lib/socket/interface.c @@ -295,7 +295,7 @@ void load_interface_list(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx, s int i; struct iface_struct *ifaces; int total_probed; - bool enable_ipv6 = lpcfg_parm_bool(lp_ctx, NULL, "ipv6", "enable", false); + bool enable_ipv6 = lpcfg_parm_bool(lp_ctx, NULL, "ipv6", "enable", true); *local_interfaces = NULL; @@ -485,7 +485,7 @@ const char **iface_list_wildcard(TALLOC_CTX *mem_ctx, struct loadparm_context *l if (ret == NULL) return NULL; #ifdef HAVE_IPV6 - if (lpcfg_parm_bool(lp_ctx, NULL, "ipv6", "enable", false)) { + if (lpcfg_parm_bool(lp_ctx, NULL, "ipv6", "enable", true)) { return str_list_add(ret, "::"); } #endif -- cgit