aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-spoolss.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-12-13 04:58:56 +0000
committerTim Potter <tpot@samba.org>2002-12-13 04:58:56 +0000
commite7eeefc8ff56981f5172b4b6374109ba4e721873 (patch)
treef7632fcfe39b355c0ffd70ae43605c535e5e425a /packet-dcerpc-spoolss.c
parent2a76fc921ca14b8c0ef715115e340b5ecc9c7ed9 (diff)
Guy has pointed out that this dissection looks wrong. In the ethereal
output for a USER_LEVEL_1 it looks like the info level and container pointer are transposed. I'm not even sure this structure is a container svn path=/trunk/; revision=6783
Diffstat (limited to 'packet-dcerpc-spoolss.c')
-rw-r--r--packet-dcerpc-spoolss.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/packet-dcerpc-spoolss.c b/packet-dcerpc-spoolss.c
index d8a088f0c4..882b6a16bf 100644
--- a/packet-dcerpc-spoolss.c
+++ b/packet-dcerpc-spoolss.c
@@ -2,7 +2,7 @@
* Routines for SMB \PIPE\spoolss packet disassembly
* Copyright 2001-2002, Tim Potter <tpot@samba.org>
*
- * $Id: packet-dcerpc-spoolss.c,v 1.65 2002/12/12 08:05:31 guy Exp $
+ * $Id: packet-dcerpc-spoolss.c,v 1.66 2002/12/13 04:58:56 tpot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2525,6 +2525,11 @@ static int dissect_USER_LEVEL_1(tvbuff_t *tvb, int offset,
{
guint32 level;
+ /* Guy has pointed out that this dissection looks wrong. In
+ the ethereal output for a USER_LEVEL_1 it looks like the
+ info level and container pointer are transposed. I'm not
+ even sure this structure is a container. */
+
offset = dissect_ndr_uint32(
tvb, offset, pinfo, tree, drep,
hf_spoolss_level, &level);