summaryrefslogtreecommitdiff
path: root/tools/checkfiltername.pl
diff options
context:
space:
mode:
authorMichal Labedzki <michal.labedzki@tieto.com>2017-01-31 19:27:51 +0100
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2017-02-06 12:41:53 +0000
commit5df6983486bdb3dbf6b55b547f31b5465e73e296 (patch)
tree6df21a326d03fca0b09b55ada254bd239e2ad236 /tools/checkfiltername.pl
parent60edcb18298f6fee6492fa90ad3ea0a1610fae06 (diff)
downloadwireshark-5df6983486bdb3dbf6b55b547f31b5465e73e296.tar.gz
checkfiltername: Add llc.bluetooth_pid to the whitelist
"llc.bluetooth_pid" is now placed in bluetooth-file, it seems to be fine, but there is a need to avoid terrible/horrible scream from this script. Change-Id: I0bf3f5b5f6459ab1f13a8c2c6ad12859af608e85 Reviewed-on: https://code.wireshark.org/review/19969 Petri-Dish: Michal Labedzki <michal.tomasz.labedzki@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'tools/checkfiltername.pl')
-rwxr-xr-xtools/checkfiltername.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/checkfiltername.pl b/tools/checkfiltername.pl
index c8da36c8a6..a4e79fd27e 100755
--- a/tools/checkfiltername.pl
+++ b/tools/checkfiltername.pl
@@ -480,7 +480,7 @@ sub is_protocol_version_whitelist {
if (($proto_filename eq "packet-sflow.c") && (index($_[0], "sflow_5") >= 0)) {return 1;}
if (($proto_filename eq "packet-sflow.c") && (index($_[0], "sflow_245") >= 0)) {return 1;}
if (($proto_filename eq "packet-tipc.c") && (index($_[0], "tipcv2") >= 0)) {return 1;}
-
+ if (($proto_filename eq "packet-bluetooth.c") && (index($_[0], "llc.bluetooth_pid") >= 0)) {return 1;}
return 0;
}