diff options
Diffstat (limited to 'source4/auth/auth_util.c')
-rw-r--r-- | source4/auth/auth_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/auth/auth_util.c b/source4/auth/auth_util.c index 4f56776c96..652c157c7a 100644 --- a/source4/auth/auth_util.c +++ b/source4/auth/auth_util.c @@ -421,7 +421,7 @@ NTSTATUS create_nt_user_token(TALLOC_CTX *mem_ctx, Make a user_info struct ***************************************************************************/ -NTSTATUS make_server_info(TALLOC_CTX *mem_ctx, +NTSTATUS make_server_info(const TALLOC_CTX *mem_ctx, struct auth_serversupplied_info **server_info, const char *username) { @@ -437,7 +437,7 @@ NTSTATUS make_server_info(TALLOC_CTX *mem_ctx, /*************************************************************************** Make (and fill) a user_info struct for a guest login. ***************************************************************************/ -NTSTATUS make_server_info_guest(TALLOC_CTX *mem_ctx, struct auth_serversupplied_info **server_info) +NTSTATUS make_server_info_guest(const TALLOC_CTX *mem_ctx, struct auth_serversupplied_info **server_info) { NTSTATUS nt_status; static const char zeros[16]; |