diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-01-18 19:13:19 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-01-18 10:55:05 +0100 |
commit | 24a4b9a7387f75c6d6a922800bef9b2178747f86 (patch) | |
tree | 0b5d8f9ea092d8bff2eca11d370a4b64b0386b7d /source4/auth/ntlm | |
parent | 08051ae29e53e83844bffb67bfe8ecf1cf4dc887 (diff) | |
download | samba-24a4b9a7387f75c6d6a922800bef9b2178747f86.tar.gz samba-24a4b9a7387f75c6d6a922800bef9b2178747f86.tar.bz2 samba-24a4b9a7387f75c6d6a922800bef9b2178747f86.zip |
s4-auth Extend python bindings to allow ldb and message to be specified
This will allow for some more tokenGroups tests in future.
Andrew Bartlett
Diffstat (limited to 'source4/auth/ntlm')
-rw-r--r-- | source4/auth/ntlm/auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/ntlm/auth.c b/source4/auth/ntlm/auth.c index 0c6c8ef52c..7f355d7055 100644 --- a/source4/auth/ntlm/auth.c +++ b/source4/auth/ntlm/auth.c @@ -496,7 +496,7 @@ _PUBLIC_ NTSTATUS auth_context_create_methods(TALLOC_CTX *mem_ctx, const char ** return NT_STATUS_OK; } -static const char **auth_methods_from_lp(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx) +const char **auth_methods_from_lp(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx) { const char **auth_methods = NULL; switch (lpcfg_server_role(lp_ctx)) { |