diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-10-23 14:19:28 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-10-23 14:52:17 +1100 |
commit | 98e4393df926b600354ef16eb4eb19b5e11bf5c3 (patch) | |
tree | cb022930ab51d372c4102cad1357767b2b92c628 /source4/kdc | |
parent | 4a1a9f579265e885c6fabb3acc3cf0d930feacc3 (diff) | |
download | samba-98e4393df926b600354ef16eb4eb19b5e11bf5c3.tar.gz samba-98e4393df926b600354ef16eb4eb19b5e11bf5c3.tar.bz2 samba-98e4393df926b600354ef16eb4eb19b5e11bf5c3.zip |
s4-dsdb: create a static system_session context
This patch adds a system_session cache, preventing us from having to
recreate it on every ldb open, and allowing us to detect when the same
session is being used in ldb_wrap
Diffstat (limited to 'source4/kdc')
-rw-r--r-- | source4/kdc/kpasswdd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/kdc/kpasswdd.c b/source4/kdc/kpasswdd.c index f9bd683e88..afbf023591 100644 --- a/source4/kdc/kpasswdd.c +++ b/source4/kdc/kpasswdd.c @@ -181,7 +181,7 @@ static bool kpasswdd_change_password(struct kdc_server *kdc, struct samr_DomInfo1 *dominfo; struct ldb_context *samdb; - samdb = samdb_connect(mem_ctx, kdc->task->event_ctx, kdc->task->lp_ctx, system_session(mem_ctx, kdc->task->lp_ctx)); + samdb = samdb_connect(mem_ctx, kdc->task->event_ctx, kdc->task->lp_ctx, system_session(kdc->task->lp_ctx)); if (!samdb) { return kpasswdd_make_error_reply(kdc, mem_ctx, KRB5_KPASSWD_HARDERROR, |