aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-05-28 20:59:56 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-05-28 20:59:56 +0000
commit43646f6fcc4a00ac84f2410068658365a140ccab (patch)
tree300c61bf08f2f08d86faa97f95419e290158d3a5 /packet-dcerpc.c
parent2619386b140a53a4d953a8b75b8a25cf5a2cbb66 (diff)
connectionless cancel PDU's don't have a dg_server_accepting_cancels field
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11027 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-dcerpc.c')
-rw-r--r--packet-dcerpc.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/packet-dcerpc.c b/packet-dcerpc.c
index 1b832a0cdf..9c70e80132 100644
--- a/packet-dcerpc.c
+++ b/packet-dcerpc.c
@@ -3,7 +3,7 @@
* Copyright 2001, Todd Sabin <tas@webspan.net>
* Copyright 2003, Tim Potter <tpot@samba.org>
*
- * $Id: packet-dcerpc.c,v 1.174 2004/05/15 10:02:26 tpot Exp $
+ * $Id: packet-dcerpc.c,v 1.175 2004/05/28 20:59:56 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -3638,9 +3638,12 @@ dissect_dcerpc_dg_cancel (tvbuff_t *tvb, int offset, packet_info *pinfo,
hdr->drep, hf_dcerpc_dg_cancel_id,
NULL);
/* XXX - are NDR booleans 32 bits? */
- offset = dissect_dcerpc_uint32 (tvb, offset, pinfo, dcerpc_tree,
+
+ /* XXX - the RPC reference in chapter: "the cancel PDU" doesn't mention
+ /* the accepting_cancels field (it's only in the cancel_ack PDU)! */
+ /*offset = dissect_dcerpc_uint32 (tvb, offset, pinfo, dcerpc_tree,
hdr->drep, hf_dcerpc_dg_server_accepting_cancels,
- NULL);
+ NULL);*/
break;
}
}