Fix some incorrect poitner types. From Jean-Francois Micouleau

svn path=/trunk/; revision=6009
This commit is contained in:
Ronnie Sahlberg 2002-08-18 07:18:55 +00:00
parent a1c846ba48
commit d8d551c7ed
1 changed files with 9 additions and 9 deletions

View File

@ -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);