aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-lsa.c
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@ns.aus.com>2003-08-20 00:09:36 +0000
committerRichard Sharpe <sharpe@ns.aus.com>2003-08-20 00:09:36 +0000
commit68d7f5d47f732cb2c5359cde5c45a944c781f48b (patch)
tree892c0cf141c757acc96ee6fd71141d5332a7c88b /packet-dcerpc-lsa.c
parent23f105da58c055b2a3f0c1bb624a32801109e179 (diff)
packet-dcerpc-lsa had some idea that EnumDomainsEx had a funny NDR rep for
the array of domain info stuff returned. Removing the offending bit fixed the dissection, at least of a capture we have. svn path=/trunk/; revision=8195
Diffstat (limited to 'packet-dcerpc-lsa.c')
-rw-r--r--packet-dcerpc-lsa.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/packet-dcerpc-lsa.c b/packet-dcerpc-lsa.c
index 215dee2893..4f61c7bc6c 100644
--- a/packet-dcerpc-lsa.c
+++ b/packet-dcerpc-lsa.c
@@ -3,7 +3,7 @@
* Copyright 2001,2003 Tim Potter <tpot@samba.org>
* 2002 Added LSA command dissectors Ronnie Sahlberg
*
- * $Id: packet-dcerpc-lsa.c,v 1.87 2003/08/04 02:49:02 tpot Exp $
+ * $Id: packet-dcerpc-lsa.c,v 1.88 2003/08/20 00:09:36 sharpe Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -3772,9 +3772,10 @@ lsa_dissect_LSA_TRUSTED_DOMAIN_INFORMATION_LIST_EX(tvbuff_t *tvb, int offset,
"TRUST INFORMATION array:", -1);
/* max count */
- offset = dissect_ndr_uint32 (tvb, offset, pinfo, tree, drep,
+ /* The original code here was wrong. It now handles these correctly */
+ /*offset = dissect_ndr_uint32 (tvb, offset, pinfo, tree, drep,
hf_lsa_max_count, NULL);
-
+ */
return offset;
}