summaryrefslogtreecommitdiff
path: root/source3/libsmb/ntlmssp.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2006-01-13 23:54:12 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:06:08 -0500
commitae4a576f680f1c0507ec73f606154ff8ff36a1dd (patch)
tree25c9ac4d3af0839da845b410204948dfd24935db /source3/libsmb/ntlmssp.c
parent5f4a895cdde15ada0f4155a431cad5ea610740d9 (diff)
downloadsamba-ae4a576f680f1c0507ec73f606154ff8ff36a1dd.tar.gz
samba-ae4a576f680f1c0507ec73f606154ff8ff36a1dd.tar.bz2
samba-ae4a576f680f1c0507ec73f606154ff8ff36a1dd.zip
r12922: Fix typo.
Jeremy. (This used to be commit 1c32b352da270370e65d25939fdc56c2a415190f)
Diffstat (limited to 'source3/libsmb/ntlmssp.c')
-rw-r--r--source3/libsmb/ntlmssp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/ntlmssp.c b/source3/libsmb/ntlmssp.c
index 6dd623047a..c891ede9bb 100644
--- a/source3/libsmb/ntlmssp.c
+++ b/source3/libsmb/ntlmssp.c
@@ -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;
}