aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-mapi.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-02-10 02:07:15 +0000
committerTim Potter <tpot@samba.org>2003-02-10 02:07:15 +0000
commite447ba4fdf3a1f3cb2b6cbe417472e081b9d177d (patch)
tree2b34467d2f4fde52516724446b844f644e320007 /packet-dcerpc-mapi.c
parentc112d781b1bddc0e8bd2f7a4ca5ae9c327067b0a (diff)
Use new format of dissect_ndr_cvstring() function.
svn path=/trunk/; revision=7110
Diffstat (limited to 'packet-dcerpc-mapi.c')
-rw-r--r--packet-dcerpc-mapi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-dcerpc-mapi.c b/packet-dcerpc-mapi.c
index 2d4eb183e4..23d851b1c7 100644
--- a/packet-dcerpc-mapi.c
+++ b/packet-dcerpc-mapi.c
@@ -2,7 +2,7 @@
* Routines for MS Exchange MAPI
* Copyright 2002, Ronnie Sahlberg
*
- * $Id: packet-dcerpc-mapi.c,v 1.19 2003/02/07 22:44:52 guy Exp $
+ * $Id: packet-dcerpc-mapi.c,v 1.20 2003/02/10 02:07:15 tpot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -237,7 +237,7 @@ mapi_logon_rqst(tvbuff_t *tvb, int offset,
packet_info *pinfo, proto_tree *tree, char *drep)
{
offset = dissect_ndr_cvstring(tvb, offset, pinfo, tree, drep,
- sizeof(guint8), hf_mapi_unknown_string, TRUE);
+ sizeof(guint8), hf_mapi_unknown_string, TRUE, NULL);
DISSECT_UNKNOWN(tvb_length_remaining(tvb, offset));
@@ -257,12 +257,12 @@ mapi_logon_reply(tvbuff_t *tvb, int offset,
DISSECT_UNKNOWN(20); /* this is 20 bytes, unless there are pointers */
offset = dissect_ndr_cvstring(tvb, offset, pinfo, tree, drep,
- sizeof(guint8), hf_mapi_unknown_string, TRUE);
+ sizeof(guint8), hf_mapi_unknown_string, TRUE, NULL);
DISSECT_UNKNOWN(6); /* possibly 1 or 2 bytes padding here */
offset = dissect_ndr_cvstring(tvb, offset, pinfo, tree, drep,
- sizeof(guint8), hf_mapi_unknown_string, TRUE);
+ sizeof(guint8), hf_mapi_unknown_string, TRUE, NULL);
DISSECT_UNKNOWN( tvb_length_remaining(tvb, offset)-4 );