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 /auth/common_auth.h | |
parent | dd479bd2927a6b470e2b6c6b89ef0e4fdd457d55 (diff) | |
download | samba-e786e8fef9960aadf1e94c70c0fb7ec18c1ed237.tar.gz |
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 'auth/common_auth.h')
-rw-r--r-- | auth/common_auth.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/auth/common_auth.h b/auth/common_auth.h index d9996e1ee4..c0fd6b6d60 100644 --- a/auth/common_auth.h +++ b/auth/common_auth.h @@ -117,8 +117,8 @@ struct auth4_context { NTSTATUS (*set_challenge)(struct auth4_context *auth_ctx, const uint8_t chal[8], const char *set_by); - NTSTATUS (*generate_session_info)(TALLOC_CTX *mem_ctx, - struct auth4_context *auth_context, + NTSTATUS (*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, |