Browse Source

list: change license to BSD-MIT.

Approved by all contributors:
https://lists.ozlabs.org/pipermail/ccan/2012-September/000490.html
https://lists.ozlabs.org/pipermail/ccan/2012-September/000488.html
https://lists.ozlabs.org/pipermail/ccan/2012-September/000489.html

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Rusty Russell 13 years ago
parent
commit
7b1223717a
4 changed files with 4 additions and 4 deletions
  1. 1 1
      ccan/list/LICENSE
  2. 1 1
      ccan/list/_info
  3. 1 1
      ccan/list/list.c
  4. 1 1
      ccan/list/list.h

+ 1 - 1
ccan/list/LICENSE

@@ -1 +1 @@
-../../licenses/LGPL-2.1
+../../licenses/BSD-MIT

+ 1 - 1
ccan/list/_info

@@ -53,7 +53,7 @@
  *		return 0;
  *	}
  *
- * License: LGPL (v2.1 or any later version)
+ * License: BSD-MIT
  * Author: Rusty Russell <rusty@rustcorp.com.au>
  */
 int main(int argc, char *argv[])

+ 1 - 1
ccan/list/list.c

@@ -1,4 +1,4 @@
-/* Licensed under LGPLv2.1+ - see LICENSE file for details */
+/* Licensed under BSD-MIT - see LICENSE file for details */
 #include <stdio.h>
 #include <stdlib.h>
 #include "list.h"

+ 1 - 1
ccan/list/list.h

@@ -1,4 +1,4 @@
-/* Licensed under LGPLv2.1+ - see LICENSE file for details */
+/* Licensed under BSD-MIT - see LICENSE file for details */
 #ifndef CCAN_LIST_H
 #define CCAN_LIST_H
 #include <stdbool.h>