summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-dcom-remunkn.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2006-08-16 23:13:26 +0000
committerUlf Lamping <ulf.lamping@web.de>2006-08-16 23:13:26 +0000
commitde0594b9a5acc545acfd64e44cd2a9f2e4e84938 (patch)
treeb47bcb6f1e5e5d8bf3acb1c878934e71759ae5e3 /epan/dissectors/packet-dcom-remunkn.c
parenteb7c653073081e10f0e7be97c5420f0884b28a1f (diff)
downloadwireshark-de0594b9a5acc545acfd64e44cd2a9f2e4e84938.tar.gz
various UUID/GUID based changes.
I think I've changed all corresponding appearances from FT_STRING to FT_GUID, so assert the FT_ type as it should only be a FT_GUID now. Add a generic implementation in guid_utils.h to have a way to store data about GUID to name resolving (something like value_string for e.g. int). It might be better to have a single registry for all GUID's of all dissectors and implement the GUID name resolving into the proto_tree_add... functions. svn path=/trunk/; revision=18935
Diffstat (limited to 'epan/dissectors/packet-dcom-remunkn.c')
-rw-r--r--epan/dissectors/packet-dcom-remunkn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dcom-remunkn.c b/epan/dissectors/packet-dcom-remunkn.c
index 48525402da..9fe8bde111 100644
--- a/epan/dissectors/packet-dcom-remunkn.c
+++ b/epan/dissectors/packet-dcom-remunkn.c
@@ -120,7 +120,7 @@ dissect_remunk_remqueryinterface_rqst(tvbuff_t *tvb, int offset,
for (u32ItemIdx = 0; u32ArraySize--; u32ItemIdx++) {
offset = dissect_dcom_append_UUID(tvb, offset, pinfo, tree, drep,
- hf_dcom_iid, "IID", u32ItemIdx+1, &iid);
+ hf_dcom_iid, u32ItemIdx+1, &iid);
if(call != NULL) {
call->iids[u32ItemIdx] = iid;
}