Clear protocol column when the dissector is known

svn path=/trunk/; revision=53368
This commit is contained in:
Pascal Quantin 2013-11-16 14:08:03 +00:00
parent 13672dc1e8
commit 28886d126b
1 changed files with 2 additions and 1 deletions

View File

@ -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: