From c127486a84605fa9df22d790b9f41e7d883d6c21 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 20 Dec 2006 19:05:07 +0000 Subject: [PATCH] r20290: Remove unused call (This used to be commit 4920265c31e073cbc0fdbfbe42dc8e47dbadca54) --- source3/nsswitch/idmap_nss.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/source3/nsswitch/idmap_nss.c b/source3/nsswitch/idmap_nss.c index 6c513fd120e..014a193c6a0 100644 --- a/source3/nsswitch/idmap_nss.c +++ b/source3/nsswitch/idmap_nss.c @@ -42,16 +42,8 @@ static NTSTATUS idmap_nss_int_init(struct idmap_domain *dom, const char *compat_ static NTSTATUS idmap_nss_unixids_to_sids(struct idmap_domain *dom, struct id_map **ids) { TALLOC_CTX *ctx; - struct winbindd_domain *wdom; int i; - wdom = find_lookup_domain_from_name(dom->name); - if (!wdom) { - DEBUG(2, ("Can't lookup domain %s\n", dom->name)); - return NT_STATUS_NO_SUCH_DOMAIN; - } - wdom->initialized = False; - ctx = talloc_new(dom); if ( ! ctx) { DEBUG(0, ("Out of memory!\n")); @@ -155,7 +147,7 @@ static NTSTATUS idmap_nss_sids_to_unixids(struct idmap_domain *dom, struct id_ma /* by default calls to winbindd are disabled the following call will not recurse so this is safe */ winbind_on(); - ret =winbind_lookup_sid(ctx, ids[i]->sid, &dom_name, &name, &type); + ret = winbind_lookup_sid(ctx, ids[i]->sid, &dom_name, &name, &type); winbind_off(); if (!ret) { -- 2.34.1