aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-exported_pdu.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2013-11-16 14:08:03 +0000
committerPascal Quantin <pascal.quantin@gmail.com>2013-11-16 14:08:03 +0000
commit28886d126b12bbf76a54e6ceb18ea68b007b1e0c (patch)
treef5198d761078d0659bde4c0325a8237f0202d1dc /epan/dissectors/packet-exported_pdu.c
parent13672dc1e8448cef66e93ba93e08e13ebe8faf4c (diff)
Clear protocol column when the dissector is known
svn path=/trunk/; revision=53368
Diffstat (limited to 'epan/dissectors/packet-exported_pdu.c')
-rw-r--r--epan/dissectors/packet-exported_pdu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-exported_pdu.c b/epan/dissectors/packet-exported_pdu.c
index 85a9f8ba0c..d404176cf3 100644
--- a/epan/dissectors/packet-exported_pdu.c
+++ b/epan/dissectors/packet-exported_pdu.c
@@ -214,7 +214,8 @@ dissect_exported_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
case EXPORTED_PDU_NEXT_PROTO_STR:
proto_handle = find_dissector(proto_name);
if (proto_handle) {
- call_dissector(find_dissector(proto_name), payload_tvb, pinfo, tree);
+ col_clear(pinfo->cinfo, COL_PROTOCOL);
+ call_dissector(proto_handle, payload_tvb, pinfo, tree);
}
break;
default: