summaryrefslogtreecommitdiff
path: root/source3/utils/ntlm_auth.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2009-04-14 12:43:34 +1000
committerAndrew Bartlett <abartlet@samba.org>2009-04-14 12:54:12 +1000
commit97af7f1ed14bcd00b7606ba6e0379589064cd233 (patch)
treea5ab5fb8d4f2dbd54af13e54d859b8c43772d216 /source3/utils/ntlm_auth.c
parent3b3e21bd9ba701a97e752205263a7903619541c7 (diff)
downloadsamba-97af7f1ed14bcd00b7606ba6e0379589064cd233.tar.gz
samba-97af7f1ed14bcd00b7606ba6e0379589064cd233.tar.bz2
samba-97af7f1ed14bcd00b7606ba6e0379589064cd233.zip
Add some harmless use of talloc_tos() in ntlm_auth
Diffstat (limited to 'source3/utils/ntlm_auth.c')
-rw-r--r--source3/utils/ntlm_auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c
index 7899bd0d07..e8bd9fbd2b 100644
--- a/source3/utils/ntlm_auth.c
+++ b/source3/utils/ntlm_auth.c
@@ -2275,7 +2275,7 @@ static bool check_auth_crap(void)
if (request_lm_key
&& (memcmp(zeros, lm_key,
sizeof(lm_key)) != 0)) {
- hex_lm_key = hex_encode_talloc(NULL, (const unsigned char *)lm_key,
+ hex_lm_key = hex_encode_talloc(talloc_tos(), (const unsigned char *)lm_key,
sizeof(lm_key));
x_fprintf(x_stdout, "LM_KEY: %s\n", hex_lm_key);
TALLOC_FREE(hex_lm_key);
@@ -2283,7 +2283,7 @@ static bool check_auth_crap(void)
if (request_user_session_key
&& (memcmp(zeros, user_session_key,
sizeof(user_session_key)) != 0)) {
- hex_user_session_key = hex_encode_talloc(NULL, (const unsigned char *)user_session_key,
+ hex_user_session_key = hex_encode_talloc(talloc_tos(), (const unsigned char *)user_session_key,
sizeof(user_session_key));
x_fprintf(x_stdout, "NT_KEY: %s\n", hex_user_session_key);
TALLOC_FREE(hex_user_session_key);