aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-samr.c
diff options
context:
space:
mode:
authorsharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>2003-07-14 19:51:42 +0000
committersharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>2003-07-14 19:51:42 +0000
commit65f7c426d1daa2879e228768de6145f19fe43d2f (patch)
treea6b016e2e34a7f675a9155079c62cb653a114b9f /packet-dcerpc-samr.c
parent83a4ff2446ec7a2f57200fc622bf3a07cb31b063 (diff)
Fix the decoding of SIDs and Attributes so that a SamLogon response with extra
SIDs can be dissected properly. However, I am not sure if this affects anything else. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8020 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-dcerpc-samr.c')
-rw-r--r--packet-dcerpc-samr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-dcerpc-samr.c b/packet-dcerpc-samr.c
index 9e8236f569..3be4174324 100644
--- a/packet-dcerpc-samr.c
+++ b/packet-dcerpc-samr.c
@@ -3,7 +3,7 @@
* Copyright 2001,2003 Tim Potter <tpot@samba.org>
* 2002 Added all command dissectors Ronnie Sahlberg
*
- * $Id: packet-dcerpc-samr.c,v 1.96 2003/06/26 04:30:29 tpot Exp $
+ * $Id: packet-dcerpc-samr.c,v 1.97 2003/07/14 19:51:42 sharpe Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2825,8 +2825,8 @@ dissect_ndr_nt_SID_AND_ATTRIBUTES_ARRAY(tvbuff_t *tvb, int offset,
tree = proto_item_add_subtree(item, ett_samr_sid_and_attributes_array);
}
- offset = dissect_ndr_uint32 (tvb, offset, pinfo, tree, drep,
- hf_samr_count, &count);
+ /*offset = dissect_ndr_uint32 (tvb, offset, pinfo, tree, drep,
+ hf_samr_count, &count); */
offset = dissect_ndr_ucarray(tvb, offset, pinfo, tree, drep,
dissect_ndr_nt_SID_AND_ATTRIBUTES);