diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-10-12 22:55:34 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-10-13 14:06:07 +0200 |
commit | 5603dab6478fbb40206a8664a308b5db5b1863e8 (patch) | |
tree | 865595e3efb120830d8d7c52e5da786bbf554d99 /source4/smbd/server.c | |
parent | 43d84aa619be5851acea82bef77164f0dc3e9f7e (diff) | |
download | samba-5603dab6478fbb40206a8664a308b5db5b1863e8.tar.gz samba-5603dab6478fbb40206a8664a308b5db5b1863e8.tar.xz samba-5603dab6478fbb40206a8664a308b5db5b1863e8.zip |
libcli/auth: Provide a struct loadparm_context to schannel calls
This will allow us to pass this down to the tdb_wrap layer.
Andrew Bartlett
Diffstat (limited to 'source4/smbd/server.c')
-rw-r--r-- | source4/smbd/server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/smbd/server.c b/source4/smbd/server.c index 322e45569f..c8549e2b56 100644 --- a/source4/smbd/server.c +++ b/source4/smbd/server.c @@ -393,7 +393,7 @@ static int binary_smbd_main(const char *binary_name, int argc, const char *argv[ } if (lpcfg_server_role(cmdline_lp_ctx) == ROLE_DOMAIN_CONTROLLER) { - if (!open_schannel_session_store(talloc_autofree_context(), lpcfg_private_dir(cmdline_lp_ctx))) { + if (!open_schannel_session_store(talloc_autofree_context(), cmdline_lp_ctx)) { DEBUG(0,("ERROR: Samba cannot open schannel store for secured NETLOGON operations.\n")); exit(1); } |