aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-tapi.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-01-30 08:19:39 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-01-30 08:19:39 +0000
commite5fbcd8376a6b032b398738ec7142e4e40bfda93 (patch)
tree06d17561d5fe1e2f84cef4cbbacb5d0e3e7e4928 /packet-dcerpc-tapi.c
parent08566e0a28916632e518d86b1081be86c1cd119f (diff)
Generalize "cb_str_postprocess()" to allow the string to be appended to
items N levels up from the item being processed, and use that to decorate the tree as it was decorated before. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7043 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-dcerpc-tapi.c')
-rw-r--r--packet-dcerpc-tapi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-dcerpc-tapi.c b/packet-dcerpc-tapi.c
index 2b0df3e2e5..6256fcea87 100644
--- a/packet-dcerpc-tapi.c
+++ b/packet-dcerpc-tapi.c
@@ -2,7 +2,7 @@
* Routines for DCERPC TAPI packet disassembly
* Copyright 2002, Ronnie Sahlberg
*
- * $Id: packet-dcerpc-tapi.c,v 1.4 2003/01/28 06:39:41 tpot Exp $
+ * $Id: packet-dcerpc-tapi.c,v 1.5 2003/01/30 08:19:39 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -79,11 +79,11 @@ dissect_tapi_UNKNOWN_00_rqst(tvbuff_t *tvb, int offset,
offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, drep,
NDR_POINTER_REF, "unknown string",
- hf_tapi_unknown_string);
+ hf_tapi_unknown_string, 0);
offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, drep,
NDR_POINTER_REF, "unknown string",
- hf_tapi_unknown_string);
+ hf_tapi_unknown_string, 0);
return offset;
}