aboutsummaryrefslogtreecommitdiffstats
path: root/packet-nbns.c
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@ns.aus.com>1999-10-03 01:19:25 +0000
committerRichard Sharpe <sharpe@ns.aus.com>1999-10-03 01:19:25 +0000
commitd9535765e8504471de36fa23059030f9a121cb81 (patch)
treeb85ed2cc6ea320f2ca7f138709b17e8ed135976a /packet-nbns.c
parent776a369f1ab7bcae2690ca28d2cbb23f86744d48 (diff)
A small fix to the handling of NetBIOS continuation messages where a
POSITIVE_SESSION_ACK was treated as a continuation :-( svn path=/trunk/; revision=759
Diffstat (limited to 'packet-nbns.c')
-rw-r--r--packet-nbns.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-nbns.c b/packet-nbns.c
index cb1728059d..329bb22447 100644
--- a/packet-nbns.c
+++ b/packet-nbns.c
@@ -4,7 +4,7 @@
* Gilbert Ramirez <gram@verdict.uthscsa.edu>
* Much stuff added by Guy Harris <guy@netapp.com>
*
- * $Id: packet-nbns.c,v 1.27 1999/09/03 01:43:08 guy Exp $
+ * $Id: packet-nbns.c,v 1.28 1999/10/03 01:19:25 sharpe Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -1293,6 +1293,7 @@ dissect_nbss(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
#define RJSHACK 1
#ifdef RJSHACK
if (((msg_type != SESSION_REQUEST) &&
+ (msg_type != POSITIVE_SESSION_RESPONSE) &&
(msg_type != NEGATIVE_SESSION_RESPONSE) &&
(msg_type != RETARGET_SESSION_RESPONSE) &&
(msg_type != SESSION_MESSAGE)) ||