Commit 0b261115 authored by Rusty Russell's avatar Rusty Russell

ccanlint: allow BSD-MIT for MIT license.

There are a large number of BSD variants out there, be explicit.
parent b06cf2a6
......@@ -50,6 +50,7 @@ static const char *expected_link(const struct manifest *m,
|| streq(d->lines[0], "LGPL (2 or any later version)"))
return "../../licenses/LGPL-2.1";
if (streq(d->lines[0], "BSD")
|| streq(d->lines[0], "BSD-MIT")
|| streq(d->lines[0], "MIT"))
return "../../licenses/BSD-MIT";
return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment