From 03703a58d7fe441ec5dcbe1814cea3f55544de55 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 29 May 2006 11:57:09 +0000 Subject: r15932: Remove per request creds They have never benn used and make little sense too imo (This used to be commit f0c1d08d50f8a3e25650ac85b178ec7a43e433d9) --- source4/dsdb/samdb/ldb_modules/password_hash.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'source4/dsdb/samdb/ldb_modules/password_hash.c') diff --git a/source4/dsdb/samdb/ldb_modules/password_hash.c b/source4/dsdb/samdb/ldb_modules/password_hash.c index 0be0fff0ff..bdf1bcc27a 100644 --- a/source4/dsdb/samdb/ldb_modules/password_hash.c +++ b/source4/dsdb/samdb/ldb_modules/password_hash.c @@ -1175,7 +1175,6 @@ static int build_domain_data_request(struct ph_async_context *ac, } ac->dom_req->op.search.attrs = attrs; ac->dom_req->controls = NULL; - ac->dom_req->creds = ac->orig_req->creds; ac->dom_req->async.context = ac; ac->dom_req->async.callback = get_domain_data_callback; ac->dom_req->async.timeout = ac->orig_req->async.timeout; @@ -1507,7 +1506,6 @@ static int password_hash_mod_async_search_self(struct ldb_async_handle *h) { } ac->search_req->op.search.attrs = NULL; ac->search_req->controls = NULL; - ac->search_req->creds = ac->orig_req->creds; ac->search_req->async.context = ac; ac->search_req->async.callback = get_self_callback; ac->search_req->async.timeout = ac->orig_req->async.timeout; -- cgit