summaryrefslogtreecommitdiff
path: root/source4/auth/ntlm
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-12-29 22:30:07 +1100
committerAndrew Bartlett <abartlet@samba.org>2011-12-29 22:30:07 +1100
commit06bbb8a6fb83ab68bb79301a1b3d0c87eec9f997 (patch)
treeb3da8bc1a15404e34a74af14510d82e8d3e3ede0 /source4/auth/ntlm
parent2f0ba1435da970b4a8fd2e1c735a75ee44edf2e2 (diff)
downloadsamba-06bbb8a6fb83ab68bb79301a1b3d0c87eec9f997.tar.gz
samba-06bbb8a6fb83ab68bb79301a1b3d0c87eec9f997.tar.bz2
samba-06bbb8a6fb83ab68bb79301a1b3d0c87eec9f997.zip
s4-auth: Rename memory contexts for greater clarity
This should better follow the mem_ctx/tmp_ctx pattern used elsewhere in Samba. Thankyou Simo for the suggestion. Andrew Bartlett
Diffstat (limited to 'source4/auth/ntlm')
-rw-r--r--source4/auth/ntlm/auth.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/source4/auth/ntlm/auth.c b/source4/auth/ntlm/auth.c
index d2f1d88508..95bdd84837 100644
--- a/source4/auth/ntlm/auth.c
+++ b/source4/auth/ntlm/auth.c
@@ -468,7 +468,7 @@ static NTSTATUS auth_generate_session_info_wrapper(TALLOC_CTX *mem_ctx,
* know anything about the PAC or auth subsystem internal structures
* before we output a struct auth session_info */
static NTSTATUS auth_generate_session_info_pac(struct auth4_context *auth_ctx,
- TALLOC_CTX *mem_ctx_out,
+ TALLOC_CTX *mem_ctx,
struct smb_krb5_context *smb_krb5_context,
DATA_BLOB *pac_blob,
const char *principal_name,
@@ -478,22 +478,22 @@ static NTSTATUS auth_generate_session_info_pac(struct auth4_context *auth_ctx,
{
NTSTATUS status;
struct auth_user_info_dc *user_info_dc;
- TALLOC_CTX *mem_ctx;
+ TALLOC_CTX *tmp_ctx;
if (!pac_blob) {
- return auth_generate_session_info_principal(auth_ctx, mem_ctx_out, principal_name,
+ return auth_generate_session_info_principal(auth_ctx, mem_ctx, principal_name,
NULL, session_info_flags, session_info);
}
- mem_ctx = talloc_named(mem_ctx_out, 0, "gensec_gssapi_session_info context");
- NT_STATUS_HAVE_NO_MEMORY(mem_ctx);
+ tmp_ctx = talloc_named(mem_ctx, 0, "gensec_gssapi_session_info context");
+ NT_STATUS_HAVE_NO_MEMORY(tmp_ctx);
- status = kerberos_pac_blob_to_user_info_dc(mem_ctx,
+ status = kerberos_pac_blob_to_user_info_dc(tmp_ctx,
*pac_blob,
smb_krb5_context->krb5_context,
&user_info_dc, NULL, NULL);
if (!NT_STATUS_IS_OK(status)) {
- talloc_free(mem_ctx);
+ talloc_free(tmp_ctx);
return status;
}
@@ -501,10 +501,10 @@ static NTSTATUS auth_generate_session_info_pac(struct auth4_context *auth_ctx,
session_info_flags |= AUTH_SESSION_INFO_AUTHENTICATED;
}
- status = auth_generate_session_info_wrapper(mem_ctx_out, auth_ctx,
+ status = auth_generate_session_info_wrapper(mem_ctx, auth_ctx,
user_info_dc,
session_info_flags, session_info);
- talloc_free(mem_ctx);
+ talloc_free(tmp_ctx);
return status;
}