aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-lsa.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2002-04-17 13:48:56 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2002-04-17 13:48:56 +0000
commitb6bde1d15095bb2203136ecb41193ca8e6f58741 (patch)
tree2efc28c65ae785e9db55f6756ce2d6a1c4641bcf /packet-dcerpc-lsa.c
parentc45862ed49c5816d11671cf8e35001d04bb421a8 (diff)
Tiny bugfix. One element was declared as of the wrong type.
svn path=/trunk/; revision=5193
Diffstat (limited to 'packet-dcerpc-lsa.c')
-rw-r--r--packet-dcerpc-lsa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-dcerpc-lsa.c b/packet-dcerpc-lsa.c
index 8be7e66343..4c808706fc 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.13 2002/04/17 11:01:38 sahlberg Exp $
+ * $Id: packet-dcerpc-lsa.c,v 1.14 2002/04/17 13:48:56 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1405,7 +1405,7 @@ dissect_nt_LUID(tvbuff_t *tvb, int offset,
tree = proto_item_add_subtree(item, ett_LUID);
}
- offset = dissect_ndr_uint64(tvb, offset, pinfo, tree, drep,
+ offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, drep,
hf_nt_luid_low, NULL);
offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, drep,
@@ -2224,7 +2224,7 @@ proto_register_dcerpc_lsa(void)
NULL, 0x0, "LUID High component", HFILL }},
{ &hf_nt_luid_low,
- { "Low", "nt.luid.low", FT_UINT64, BASE_HEX,
+ { "Low", "nt.luid.low", FT_UINT32, BASE_HEX,
NULL, 0x0, "LUID Low component", HFILL }},
{ &hf_lsa_size,