]> git.ozlabs.org Git - ccan/blobdiff - ccan/strmap/_info
Relicense all public domain modules to CC0.
[ccan] / ccan / strmap / _info
index 9832f80dbcf48c734f42466237352c1e35a951d5..6d03b0caaa9c4c81ec30bba34e66e3dddf4d7dbb 100644 (file)
@@ -9,7 +9,7 @@
  *  http://cr.yp.to/critbit.html
  *  http://github.com/agl/critbit (which this code is based on)
  *
- * License: Public domain (but some dependencies are LGPL!)
+ * License: CC0 (but some dependencies are LGPL!)
  * Author: Rusty Russell <rusty@rustcorp.com.au>
  * Ccanlint:
  *     license_depends_compat FAIL
@@ -21,8 +21,8 @@
  * static bool dump(const char *member, size_t value, void *unused)
  * {
  *     printf("%s at %zu. ", member, value);
- *     // false means keep going with iteration.
- *     return false;
+ *     // true means keep going with iteration.
+ *     return true;
  * }
  *
  * int main(int argc, char *argv[])