diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-12-06 23:57:22 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:48:37 +0100 |
commit | c5bf20c5fe7eaa04cd11a7ce4f365aa6ffd7b124 (patch) | |
tree | a8f2d25736e2edb08fc4b03b21f3a2949b1e2117 /source4/kdc | |
parent | 04304808cabd0f05a5ff5bf23d8fd950eff8d6f3 (diff) | |
download | samba-c5bf20c5fe7eaa04cd11a7ce4f365aa6ffd7b124.tar.gz samba-c5bf20c5fe7eaa04cd11a7ce4f365aa6ffd7b124.tar.xz samba-c5bf20c5fe7eaa04cd11a7ce4f365aa6ffd7b124.zip |
r26325: Remove use of global_loadparm in netif.
(This used to be commit e452cb28594f23add7c00247ed39e8323aea78a6)
Diffstat (limited to 'source4/kdc')
-rw-r--r-- | source4/kdc/kdc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/kdc/kdc.c b/source4/kdc/kdc.c index 7708a76c446..18fc86b8e01 100644 --- a/source4/kdc/kdc.c +++ b/source4/kdc/kdc.c @@ -522,14 +522,14 @@ static NTSTATUS kdc_add_socket(struct kdc_server *kdc, const char *address, */ static NTSTATUS kdc_startup_interfaces(struct kdc_server *kdc, struct loadparm_context *lp_ctx) { - int num_interfaces = iface_count(); + int num_interfaces = iface_count(lp_ctx); TALLOC_CTX *tmp_ctx = talloc_new(kdc); NTSTATUS status; int i; for (i=0; i<num_interfaces; i++) { - const char *address = talloc_strdup(tmp_ctx, iface_n_ip(i)); + const char *address = talloc_strdup(tmp_ctx, iface_n_ip(lp_ctx, i)); status = kdc_add_socket(kdc, address, lp_krb5_port(lp_ctx), lp_kpasswd_port(lp_ctx)); NT_STATUS_NOT_OK_RETURN(status); @@ -571,7 +571,7 @@ static void kdc_task_init(struct task_server *task) break; } - if (iface_count() == 0) { + if (iface_count(task->lp_ctx) == 0) { task_server_terminate(task, "kdc: no network interfaces configured"); return; } |