aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-lsa.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-04-30 23:48:15 +0000
committerGuy Harris <guy@alum.mit.edu>2002-04-30 23:48:15 +0000
commita06dd1c72499ef7a9de7b5c0e4f986e90fd28592 (patch)
treed0846de4485c70f94f13238f87d9a45578c5432a /packet-dcerpc-lsa.c
parent2d7f7326773b66a508a42101f3d2102a3f3f1726 (diff)
From Joerg Mayer: get rid of unused "pinfo" argument to
"dissect_nt_sec_desc()". Also, get rid of code to handle lengths of -1 in "dissect_nt_sec_desc()" - we never pass it a length of -1, as security descriptors aren't sent over the wire with NDR syntax. svn path=/trunk/; revision=5317
Diffstat (limited to 'packet-dcerpc-lsa.c')
-rw-r--r--packet-dcerpc-lsa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-dcerpc-lsa.c b/packet-dcerpc-lsa.c
index b63468658a..887b9852a1 100644
--- a/packet-dcerpc-lsa.c
+++ b/packet-dcerpc-lsa.c
@@ -3,7 +3,7 @@
* Copyright 2001, Tim Potter <tpot@samba.org>
* 2002 Added LSA command dissectors Ronnie Sahlberg
*
- * $Id: packet-dcerpc-lsa.c,v 1.38 2002/04/30 10:17:53 sahlberg Exp $
+ * $Id: packet-dcerpc-lsa.c,v 1.39 2002/04/30 23:48:14 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -275,7 +275,7 @@ lsa_dissect_LSA_SECURITY_DESCRIPTOR_data(tvbuff_t *tvb, int offset,
offset = dissect_ndr_uint32 (tvb, offset, pinfo, tree, drep,
hf_lsa_sd_size, &len);
- dissect_nt_sec_desc(tvb, pinfo, offset, tree, len);
+ dissect_nt_sec_desc(tvb, offset, tree, len);
offset += len;
return offset;