From a06b88863d165d20123ee19f9313249b870ed2be Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sat, 11 Sep 2004 23:05:08 +0000 Subject: r2285: Remove more static data, fix spelling in a comment. (This used to be commit 2c701f59a7f232fed624f7cec62dd494dd32c2d9) --- source4/libcli/auth/ntlmssp.c | 4 ++-- source4/libcli/auth/ntlmssp.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'source4') diff --git a/source4/libcli/auth/ntlmssp.c b/source4/libcli/auth/ntlmssp.c index e6839e1fea..592656e880 100644 --- a/source4/libcli/auth/ntlmssp.c +++ b/source4/libcli/auth/ntlmssp.c @@ -107,8 +107,8 @@ void debug_ntlmssp_flags(uint32_t neg_flags) static const uint8_t *get_challenge(const struct ntlmssp_state *ntlmssp_state) { - static uint8_t chal[8]; - generate_random_buffer(chal, sizeof(chal)); + uint8_t *chal = talloc(ntlmssp_state->mem_ctx, 8); + generate_random_buffer(chal, 8); return chal; } diff --git a/source4/libcli/auth/ntlmssp.h b/source4/libcli/auth/ntlmssp.h index 153669f7b4..a318025650 100644 --- a/source4/libcli/auth/ntlmssp.h +++ b/source4/libcli/auth/ntlmssp.h @@ -120,7 +120,7 @@ struct ntlmssp_state * Callback to get the 'challenge' used for NTLM authentication. * * @param ntlmssp_state This structure - * @return 8 bytes of challnege data, determined by the server to be the challenge for NTLM authentication + * @return 8 bytes of challenge data, determined by the server to be the challenge for NTLM authentication * */ const uint8_t *(*get_challenge)(const struct ntlmssp_state *ntlmssp_state); -- cgit