aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-lsa.c
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2003-05-21 10:06:29 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2003-05-21 10:06:29 +0000
commitc5a480434aa51df2332ab78dcd8056841aa5a5de (patch)
treec7d0833f81f5e5d9f4070f2b6e4c4812a59791f5 /packet-dcerpc-lsa.c
parent5a4aa7e7d93764a381bf692bef9cba98fd28024e (diff)
Change the interface to dissect_ndr_nt_SID to take the extra parameter hf_sid
if the caller wants something else instead of "smb.sid" git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7707 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-dcerpc-lsa.c')
-rw-r--r--packet-dcerpc-lsa.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/packet-dcerpc-lsa.c b/packet-dcerpc-lsa.c
index 84ef2244c4..4c0255f50c 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.78 2003/05/21 09:34:53 sahlberg Exp $
+ * $Id: packet-dcerpc-lsa.c,v 1.79 2003/05/21 10:06:29 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1717,7 +1717,7 @@ lsa_dissect_lsaclearauditlog_rqst(tvbuff_t *tvb, int offset,
pinfo, tree, drep);
offset = dissect_ndr_nt_SID(tvb, offset,
- pinfo, tree, drep);
+ pinfo, tree, drep, -1);
/* unknown */
offset = dissect_ndr_uint32 (tvb, offset, pinfo, tree, drep,
@@ -1798,7 +1798,7 @@ lsa_dissect_lsaopentrusteddomain_rqst(tvbuff_t *tvb, int offset,
pinfo, tree, drep);
offset = dissect_ndr_nt_SID(tvb, offset,
- pinfo, tree, drep);
+ pinfo, tree, drep, -1);
offset = lsa_dissect_ACCESS_MASK(tvb, offset,
pinfo, tree, drep);
@@ -1829,7 +1829,7 @@ lsa_dissect_lsadeletetrusteddomain_rqst(tvbuff_t *tvb, int offset,
pinfo, tree, drep);
offset = dissect_ndr_nt_SID(tvb, offset,
- pinfo, tree, drep);
+ pinfo, tree, drep, -1);
return offset;
}
@@ -2545,7 +2545,7 @@ lsa_dissect_lsaopenaccount_rqst(tvbuff_t *tvb, int offset,
/* [in, ref] SID *account */
offset = dissect_ndr_nt_SID(tvb, offset,
- pinfo, tree, drep);
+ pinfo, tree, drep, -1);
/* [in] ACCESS_MASK access */
offset = lsa_dissect_ACCESS_MASK(tvb, offset,
@@ -2908,7 +2908,7 @@ lsa_dissect_lsaenumerateaccountrights_rqst(tvbuff_t *tvb, int offset,
/* [in, ref] SID *account */
offset = dissect_ndr_nt_SID(tvb, offset,
- pinfo, tree, drep);
+ pinfo, tree, drep, -1);
return offset;
}
@@ -2939,7 +2939,7 @@ lsa_dissect_lsaaddaccountrights_rqst(tvbuff_t *tvb, int offset,
/* [in, ref] SID *account */
offset = dissect_ndr_nt_SID(tvb, offset,
- pinfo, tree, drep);
+ pinfo, tree, drep, -1);
/* [in, ref] LSA_UNICODE_STRING_ARRAY *rights */
offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, drep,
@@ -2970,7 +2970,7 @@ lsa_dissect_lsaremoveaccountrights_rqst(tvbuff_t *tvb, int offset,
/* [in, ref] SID *account */
offset = dissect_ndr_nt_SID(tvb, offset,
- pinfo, tree, drep);
+ pinfo, tree, drep, -1);
/* remove all */
offset = dissect_ndr_uint8 (tvb, offset, pinfo, tree, drep,
@@ -3079,7 +3079,7 @@ lsa_dissect_lsaquerytrusteddomaininfo_rqst(tvbuff_t *tvb, int offset,
/* [in, ref] SID *sid */
offset = dissect_ndr_nt_SID(tvb, offset,
- pinfo, tree, drep);
+ pinfo, tree, drep, -1);
/* [in] TRUSTED_INFORMATION_CLASS level */
offset = dissect_ndr_uint16 (tvb, offset, pinfo, tree, drep,
@@ -3150,7 +3150,7 @@ lsa_dissect_lsasettrusteddomaininfo_rqst(tvbuff_t *tvb, int offset,
/* [in, ref] SID *sid */
offset = dissect_ndr_nt_SID(tvb, offset,
- pinfo, tree, drep);
+ pinfo, tree, drep, -1);
/* [in] TRUSTED_INFORMATION_CLASS level */
offset = dissect_ndr_uint16 (tvb, offset, pinfo, tree, drep,
@@ -3365,7 +3365,7 @@ lsa_dissect_lsacreateaccount_rqst(tvbuff_t *tvb, int offset,
pinfo, tree, drep);
offset = dissect_ndr_nt_SID(tvb, offset,
- pinfo, tree, drep);
+ pinfo, tree, drep, -1);
offset = lsa_dissect_ACCESS_MASK(tvb, offset,
pinfo, tree, drep);