From 48646ee69aeb8f963d5d34abdaec783283efea71 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 6 Apr 2011 06:46:26 +1000 Subject: s3-auth: Make server_info const in create_local_token() Andreas Schneider correctly points out that this input parameter should now be const, and that found a bug where I used then used it incorrectly as a talloc context. Andrew Bartlett Autobuild-User: Andrew Bartlett Autobuild-Date: Wed Apr 6 00:33:31 CEST 2011 on sn-devel-104 --- source3/auth/proto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/auth/proto.h') diff --git a/source3/auth/proto.h b/source3/auth/proto.h index 15e79dda0a..b88bb8c626 100644 --- a/source3/auth/proto.h +++ b/source3/auth/proto.h @@ -102,7 +102,7 @@ struct samu; NTSTATUS make_server_info_sam(struct auth_serversupplied_info **server_info, struct samu *sampass); NTSTATUS create_local_token(TALLOC_CTX *mem_ctx, - struct auth_serversupplied_info *server_info, + const struct auth_serversupplied_info *server_info, DATA_BLOB *session_key, struct auth_serversupplied_info **session_info_out); NTSTATUS create_token_from_username(TALLOC_CTX *mem_ctx, const char *username, -- cgit