summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2014-12-21 07:27:01 -0500
committerMichael Mann <mmann78@netscape.net>2014-12-21 12:57:58 +0000
commit6f8de873c7bd3f93fe01c349b41e80e4956c5a33 (patch)
treeb8de5994737712856a55ed48255d039701e2fc89
parentda220672b299a402942db74bb212d50a62065d24 (diff)
downloadwireshark-6f8de873c7bd3f93fe01c349b41e80e4956c5a33.tar.gz
Allow "cba" filter prefix for hf_ fields (missed a Profinet file the first time)
Change-Id: I3ff65a8f6307a9ee08e173c0b2658d96985e0c45 Reviewed-on: https://code.wireshark.org/review/5943 Reviewed-by: Michael Mann <mmann78@netscape.net>
-rwxr-xr-xtools/checkfiltername.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/checkfiltername.pl b/tools/checkfiltername.pl
index 49a6e129c2..ff2d49085c 100755
--- a/tools/checkfiltername.pl
+++ b/tools/checkfiltername.pl
@@ -438,6 +438,7 @@ sub is_from_other_protocol_whitelist {
if (($proto_filename eq "packet-rtcp.c") && (index($_[0], "srtcp") >= 0)) {return 1;}
if (($proto_filename eq "packet-rtp.c") && (index($_[0], "srtp") >= 0)) {return 1;}
if (($proto_filename eq "packet-dcom-cba-acco.c") && (index($_[0], "cba") >= 0)) {return 1;}
+ if (($proto_filename eq "packet-dcom-cba.c") && (index($_[0], "cba") >= 0)) {return 1;}
#XXX - HACK to get around nested "s in field name
if (($proto_filename eq "packet-gsm_sim.c") && (index($_[0], "e\\") >= 0)) {return 1;}