From 0b26111530a6eb35420b7075b2cd58390cb2af14 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Thu, 6 Jan 2011 12:07:05 +1030 Subject: [PATCH 1/1] ccanlint: allow BSD-MIT for MIT license. There are a large number of BSD variants out there, be explicit. --- tools/ccanlint/tests/license.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/ccanlint/tests/license.c b/tools/ccanlint/tests/license.c index 9140f98e..35a4d393 100644 --- a/tools/ccanlint/tests/license.c +++ b/tools/ccanlint/tests/license.c @@ -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; -- 2.39.2