summaryrefslogtreecommitdiff
path: root/packet-dcerpc-lsa.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-04-03 05:43:59 +0000
committerTim Potter <tpot@samba.org>2003-04-03 05:43:59 +0000
commit795926735d5cf5699abd8ea5e2a9e02739a66243 (patch)
tree009e2f604ae7d1249631077024491a1d8da7a1be /packet-dcerpc-lsa.c
parentdea1bf4adb872d9ae1baa663a96a597208cf3016 (diff)
downloadwireshark-795926735d5cf5699abd8ea5e2a9e02739a66243.tar.gz
When dissecting specific rights, pass a name string down so the
proto item says "foo specific rights" instead of just "specific rights". svn path=/trunk/; revision=7401
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 825e680bc2..0d53f45b3b 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.72 2003/02/08 09:41:43 guy Exp $
+ * $Id: packet-dcerpc-lsa.c,v 1.73 2003/04/03 05:43:58 tpot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -364,7 +364,8 @@ lsa_dissect_LSA_SECURITY_DESCRIPTOR_data(tvbuff_t *tvb, int offset,
hf_lsa_sd_size, &len);
dissect_nt_sec_desc(
- tvb, offset, pinfo, tree, drep, len, lsa_specific_rights);
+ tvb, offset, pinfo, tree, drep, len, lsa_specific_rights,
+ "LSA");
offset += len;
@@ -444,7 +445,7 @@ lsa_dissect_ACCESS_MASK(tvbuff_t *tvb, int offset,
{
offset = dissect_nt_access_mask(
tvb, offset, pinfo, tree, drep, hf_lsa_access_mask,
- lsa_specific_rights);
+ lsa_specific_rights, "LSA");
return offset;
}