diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-06-28 05:35:06 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-06-28 05:35:06 +0000 |
commit | 3788ce8be554a546d90b9a628239711eda92f32d (patch) | |
tree | 194064b315e1766b1e6ea4f106f1979499aae0f0 | |
parent | 117c42895b1c5689447fb209756f0a12461d7ea9 (diff) | |
download | wireshark-3788ce8be554a546d90b9a628239711eda92f32d.tar.gz wireshark-3788ce8be554a546d90b9a628239711eda92f32d.tar.bz2 wireshark-3788ce8be554a546d90b9a628239711eda92f32d.zip |
From Jean-Baptiste Marchand: fix the dissection of the
POLICY_AUDIT_LOG_INFO information level used by the
LsarQueryInformationPolicy(2) operations (based on Samba4 lsa.idl).
svn path=/trunk/; revision=11255
-rw-r--r-- | packet-dcerpc-lsa.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packet-dcerpc-lsa.c b/packet-dcerpc-lsa.c index dc31bc491a..dee93b632e 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.96 2004/06/28 05:29:21 guy Exp $ + * $Id: packet-dcerpc-lsa.c,v 1.97 2004/06/28 05:35:06 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -723,6 +723,11 @@ lsa_dissect_POLICY_AUDIT_LOG_INFO(tvbuff_t *tvb, int offset, offset = dissect_ndr_uint32 (tvb, offset, pinfo, tree, drep, hf_lsa_pali_next_audit_record, NULL); + /* unknown */ + + offset = dissect_ndr_uint32 (tvb, offset, pinfo, tree, drep, + hf_lsa_unknown_long, NULL); + proto_item_set_len(item, offset-old_offset); return offset; } |