summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2014-12-18 14:40:15 -0500
committerMichael Mann <mmann78@netscape.net>2014-12-18 19:45:33 +0000
commit577e6a133c8428c4e1b16f18e969192435581016 (patch)
tree34613d559eedbcf9168c5159b8e67403002e250b
parent71d13b30afa5744a6cff8c67611458d184e5952c (diff)
downloadwireshark-577e6a133c8428c4e1b16f18e969192435581016.tar.gz
Allow "cba" filter prefix for hf_ fields. Seems like something with "pn" or (abbreviated) Profinet would make more sense (with dissectors to match), but trying to satisfy pre-commit check.
Change-Id: I1db5314fdc77ab7b909c955415f66f24da7d2a0a Reviewed-on: https://code.wireshark.org/review/5838 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 96d4887079..49a6e129c2 100755
--- a/tools/checkfiltername.pl
+++ b/tools/checkfiltername.pl
@@ -437,6 +437,7 @@ sub is_from_other_protocol_whitelist {
#prefix (which isn't necessarily "protocol")
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;}
#XXX - HACK to get around nested "s in field name
if (($proto_filename eq "packet-gsm_sim.c") && (index($_[0], "e\\") >= 0)) {return 1;}