diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-02-04 17:49:49 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-02-18 02:19:35 +0100 |
commit | e786e8fef9960aadf1e94c70c0fb7ec18c1ed237 (patch) | |
tree | 63250524203335db77f2f039f8bcb72d7ba79872 /source3/auth | |
parent | dd479bd2927a6b470e2b6c6b89ef0e4fdd457d55 (diff) | |
download | samba-e786e8fef9960aadf1e94c70c0fb7ec18c1ed237.tar.gz samba-e786e8fef9960aadf1e94c70c0fb7ec18c1ed237.tar.bz2 samba-e786e8fef9960aadf1e94c70c0fb7ec18c1ed237.zip |
auth: Reorder arguments to generate_session_info
This matches check_ntlm_password() and generate_session_info_pac()
Andrew Bartlett
Autobuild-User: Andrew Bartlett <abartlet@samba.org>
Autobuild-Date: Sat Feb 18 02:19:35 CET 2012 on sn-devel-104
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth_ntlmssp.c | 4 | ||||
-rw-r--r-- | source3/auth/proto.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source3/auth/auth_ntlmssp.c b/source3/auth/auth_ntlmssp.c index 7b632fdf22..582c8dc591 100644 --- a/source3/auth/auth_ntlmssp.c +++ b/source3/auth/auth_ntlmssp.c @@ -24,8 +24,8 @@ #include "includes.h" #include "auth.h" -NTSTATUS auth3_generate_session_info(TALLOC_CTX *mem_ctx, - struct auth4_context *auth_context, +NTSTATUS auth3_generate_session_info(struct auth4_context *auth_context, + TALLOC_CTX *mem_ctx, void *server_returned_info, const char *original_user_name, uint32_t session_info_flags, diff --git a/source3/auth/proto.h b/source3/auth/proto.h index bb25fedce6..1697eda5be 100644 --- a/source3/auth/proto.h +++ b/source3/auth/proto.h @@ -74,8 +74,8 @@ NTSTATUS auth_generic_prepare(TALLOC_CTX *mem_ctx, const struct tsocket_address /* The following definitions come from auth/auth_ntlmssp.c */ -NTSTATUS auth3_generate_session_info(TALLOC_CTX *mem_ctx, - struct auth4_context *auth_context, +NTSTATUS auth3_generate_session_info(struct auth4_context *auth_context, + TALLOC_CTX *mem_ctx, void *server_returned_info, const char *original_user_name, uint32_t session_info_flags, |