X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fstrmap%2F_info;h=6d03b0caaa9c4c81ec30bba34e66e3dddf4d7dbb;hp=9832f80dbcf48c734f42466237352c1e35a951d5;hb=516c47790828cfb892fecdbe03a6928c345d29b2;hpb=20f3b260313fb4d5566aeb0d0c5439574e914e2d;ds=sidebyside diff --git a/ccan/strmap/_info b/ccan/strmap/_info index 9832f80d..6d03b0ca 100644 --- a/ccan/strmap/_info +++ b/ccan/strmap/_info @@ -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 * 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[])