From: Rusty Russell Date: Thu, 1 Nov 2012 23:17:28 +0000 (+1030) Subject: hash: switch to CC0 license. X-Git-Url: https://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=6585f22b6d9e1b00eeaea2d4539a098d5fc2681c;hp=516c47790828cfb892fecdbe03a6928c345d29b2 hash: switch to CC0 license. As per email from Andreas (the only other contributor): From: Andreas Schlick Subject: Re: Changing from Public Domain to CC0 To: Rusty Russell Date: Thu, 01 Nov 2012 12:51:47 +0100 Hi! > Since Public Domain is a slippery concept outside certain countries, > it has been suggested that I formalize it to Creative Commons Zero. > > I want to change the License string (and add a symlink) to the > following trivial modules. Please Ack. Sure, ack. Andreas Signed-off-by: Rusty Russell --- diff --git a/ccan/hash/LICENSE b/ccan/hash/LICENSE new file mode 120000 index 00000000..b7951dab --- /dev/null +++ b/ccan/hash/LICENSE @@ -0,0 +1 @@ +../../licenses/CC0 \ No newline at end of file diff --git a/ccan/hash/_info b/ccan/hash/_info index 4b425d39..d9754527 100644 --- a/ccan/hash/_info +++ b/ccan/hash/_info @@ -13,7 +13,7 @@ * The stable ones will always give the same results on any computer, * and on any version of this package. * - * License: Public domain + * License: CC0 (Public domain) * Maintainer: Rusty Russell * Author: Bob Jenkins */ diff --git a/ccan/hash/hash.c b/ccan/hash/hash.c index 59c4d24b..5ccc6955 100644 --- a/ccan/hash/hash.c +++ b/ccan/hash/hash.c @@ -1,3 +1,4 @@ +/* CC0 (Public domain) - see LICENSE file for details */ /* ------------------------------------------------------------------------------- lookup3.c, by Bob Jenkins, May 2006, Public Domain.