From 63eea3c844d05efbcc6015beb623eee7f781b772 Mon Sep 17 00:00:00 2001 From: etxrab Date: Wed, 13 Jan 2010 20:32:01 +0000 Subject: From Didier Gautheron: check_col.diff Remove redundant calls to check_col() if it guards only one columns function with one parameter after the column type. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31519 f5534014-38df-0310-8fa8-9805f1628bb7 --- epan/dissectors/packet-pingpongprotocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/dissectors/packet-pingpongprotocol.c') diff --git a/epan/dissectors/packet-pingpongprotocol.c b/epan/dissectors/packet-pingpongprotocol.c index d755f7f7cf..1a9c105e8a 100644 --- a/epan/dissectors/packet-pingpongprotocol.c +++ b/epan/dissectors/packet-pingpongprotocol.c @@ -149,7 +149,7 @@ dissect_pingpongprotocol(tvbuff_t *message_tvb, packet_info *pinfo, proto_tree * proto_tree *pingpongprotocol_tree; /* pinfo is NULL only if dissect_pingpongprotocol_message is called from dissect_error cause */ - if (pinfo && (check_col(pinfo->cinfo, COL_PROTOCOL))) + if (pinfo) col_set_str(pinfo->cinfo, COL_PROTOCOL, "PingPongProtocol"); /* In the interest of speed, if "tree" is NULL, don't do any work not -- cgit v1.2.3