From 576cdc713c1e98b6cf30b610c8c1f65f65e55961 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 15 Feb 2006 21:08:10 +0000 Subject: r13516: We can't bind to both 0.0.0.0 and specific network interfaces at the same time. This was causing the kdc to shut itself down if 'bind interfaces only = no'. Andrew Bartlett (This used to be commit 02ff22a25050687478cfcca4dce35c2346cc2241) --- source4/kdc/kdc.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'source4/kdc/kdc.c') diff --git a/source4/kdc/kdc.c b/source4/kdc/kdc.c index fc3dd516a5..8492d5a7eb 100644 --- a/source4/kdc/kdc.c +++ b/source4/kdc/kdc.c @@ -510,13 +510,6 @@ static NTSTATUS kdc_startup_interfaces(struct kdc_server *kdc) NT_STATUS_NOT_OK_RETURN(status); } - /* if we are allowing incoming packets from any address, then - we need to bind to the wildcard address */ - if (!lp_bind_interfaces_only()) { - status = kdc_add_socket(kdc, "0.0.0.0"); - NT_STATUS_NOT_OK_RETURN(status); - } - talloc_free(tmp_ctx); return NT_STATUS_OK; -- cgit