aboutsummaryrefslogtreecommitdiffstats
path: root/tools/licensecheck.pl
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2018-02-09 14:58:53 +0100
committerAnders Broman <a.broman58@gmail.com>2018-02-09 14:13:12 +0000
commita9733b5cd536c0cd37d7be82152328e2a4d7c112 (patch)
tree846fd53e4936b88f22c6f1ec638472015fdbd010 /tools/licensecheck.pl
parentd2d1f793f81904b26d4cfc4525abe52aba18341d (diff)
tools: fix BSD license name in licensecheck.pl.
Change-Id: I401efcbb4f8f9eec5ef38f3788e979a3752c4a7f Reviewed-on: https://code.wireshark.org/review/25714 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'tools/licensecheck.pl')
-rwxr-xr-xtools/licensecheck.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/licensecheck.pl b/tools/licensecheck.pl
index d9274fddd1..8079780525 100755
--- a/tools/licensecheck.pl
+++ b/tools/licensecheck.pl
@@ -694,7 +694,7 @@ sub parselicense {
}
if ($licensetext =~ /SPDX-License-Identifier:\s+BSD-3-Clause/i) {
- $license = 'BSD-3-Clause';
+ $license = 'BSD (3 clause)';
}