1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r12922: Fix typo.

Jeremy.
(This used to be commit 1c32b352da)
This commit is contained in:
Jeremy Allison 2006-01-13 23:54:12 +00:00 committed by Gerald (Jerry) Carter
parent 5f4a895cdd
commit ae4a576f68

View File

@ -385,7 +385,7 @@ static void ntlmssp_handle_neg_flags(struct ntlmssp_state *ntlmssp_state,
void ntlmssp_weaken_keys(NTLMSSP_STATE *ntlmssp_state)
{
/* Nothing to weaken. We certainly don't want to 'extend' the length... */
if (!ntlmssp_state->session_key.length < 8) {
if (ntlmssp_state->session_key.length < 8) {
return;
}