aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-netlogon.c
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2002-08-18 07:18:55 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2002-08-18 07:18:55 +0000
commit3bdee4fe50e078d8099f3c5a3f0377d888df306a (patch)
treef13992b1dc8e3653f944d855d7c89c51d7016e7f /packet-dcerpc-netlogon.c
parenta413e039d6c6f10a683cb28cb22a071e922d4406 (diff)
Fix some incorrect poitner types. From Jean-Francois Micouleau
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6009 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-dcerpc-netlogon.c')
-rw-r--r--packet-dcerpc-netlogon.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/packet-dcerpc-netlogon.c b/packet-dcerpc-netlogon.c
index 3552ce3361..b7fffef9fa 100644
--- a/packet-dcerpc-netlogon.c
+++ b/packet-dcerpc-netlogon.c
@@ -3,7 +3,7 @@
* Copyright 2001, Tim Potter <tpot@samba.org>
* 2002 structure and command dissectors by Ronnie Sahlberg
*
- * $Id: packet-dcerpc-netlogon.c,v 1.50 2002/08/17 00:45:03 sahlberg Exp $
+ * $Id: packet-dcerpc-netlogon.c,v 1.51 2002/08/18 07:18:55 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -5047,16 +5047,16 @@ netlogon_dissect_netserverauthenticate3_rqst(tvbuff_t *tvb, int offset,
pinfo, tree, drep);
offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, drep,
- dissect_ndr_nt_UNICODE_STRING_str, NDR_POINTER_UNIQUE,
+ dissect_ndr_nt_UNICODE_STRING_str, NDR_POINTER_REF,
"Computer Name", hf_netlogon_computer_name, 0);
offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, drep,
netlogon_dissect_CREDENTIAL, NDR_POINTER_REF,
- "CREDENTIAL pointer: authenticator", -1, 0);
+ "CREDENTIAL: authenticator", -1, 0);
offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, drep,
- netlogon_dissect_pointer_long, NDR_POINTER_UNIQUE,
- "ULONG pointer: negotiate_flags", hf_netlogon_unknown_long, 0);
+ netlogon_dissect_pointer_long, NDR_POINTER_REF,
+ "ULONG: negotiate_flags", hf_netlogon_unknown_long, 0);
return offset;
}
@@ -5071,12 +5071,12 @@ netlogon_dissect_netserverauthenticate3_reply(tvbuff_t *tvb, int offset,
"CREDENTIAL pointer: unknown_NETLOGON_CREDENTIAL", -1, 0);
offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, drep,
- netlogon_dissect_pointer_long, NDR_POINTER_UNIQUE,
- "ULONG pointer: negotiate_flags", hf_netlogon_unknown_long, 0);
+ netlogon_dissect_pointer_long, NDR_POINTER_REF,
+ "ULONG: negotiate_flags", hf_netlogon_unknown_long, 0);
offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, drep,
- netlogon_dissect_pointer_long, NDR_POINTER_UNIQUE,
- "ULONG pointer: unknown_ULONG", hf_netlogon_unknown_long, 0);
+ netlogon_dissect_pointer_long, NDR_POINTER_REF,
+ "ULONG: unknown_ULONG", hf_netlogon_unknown_long, 0);
offset = dissect_ntstatus(tvb, offset, pinfo, tree, drep,
hf_netlogon_rc, NULL);