aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ntlmssp.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-05-07 07:12:50 +0000
committerTim Potter <tpot@samba.org>2003-05-07 07:12:50 +0000
commit04c95838a0c50ccaab6876c6260bbda99b8ff92d (patch)
tree05bacc8289829f2263e6e167dddb5b8f25e86202 /packet-ntlmssp.c
parentf7c07ddbaebbd1d596914b623ea8cbbdc1477e57 (diff)
Whoops - had that test reversed.
svn path=/trunk/; revision=7648
Diffstat (limited to 'packet-ntlmssp.c')
-rw-r--r--packet-ntlmssp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ntlmssp.c b/packet-ntlmssp.c
index ec2b4c89f8..ce207dde17 100644
--- a/packet-ntlmssp.c
+++ b/packet-ntlmssp.c
@@ -2,7 +2,7 @@
* Routines for NTLM Secure Service Provider
* Devin Heitmueller <dheitmueller@netilla.com>
*
- * $Id: packet-ntlmssp.c,v 1.38 2003/05/07 04:32:59 tpot Exp $
+ * $Id: packet-ntlmssp.c,v 1.39 2003/05/07 07:12:50 tpot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -471,7 +471,7 @@ dissect_ntlmssp_ntlm_response(tvbuff_t *tvb, int offset,
proto_item *item = NULL;
proto_tree *subtree = NULL, *ntlmv2_tree = NULL;
- if (blob_length > 24) {
+ if (blob_length <= 24) {
/* Not NTLMv2 */