X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fccanlint%2Ftests%2Flicense_exists.c;h=3482bfee7745d6913a76380e8648a18695e62d65;hp=af1bc52a07c85e875829f54824c56bdad9540256;hb=HEAD;hpb=dc8042b42500f79f613b1197df6cdf739615a89f diff --git a/tools/ccanlint/tests/license_exists.c b/tools/ccanlint/tests/license_exists.c index af1bc52a..3482bfee 100644 --- a/tools/ccanlint/tests/license_exists.c +++ b/tools/ccanlint/tests/license_exists.c @@ -1,6 +1,7 @@ #include #include #include +#include #include #include #include @@ -73,7 +74,7 @@ static void handle_license_link(struct manifest *m, struct score *score) { struct doc_section *d = find_license_tag(m); const char *prefix = link_prefix(m); - const char *link = tal_fmt(m, "%s/LICENSE", m->dir); + const char *link = path_join(m, m->dir, "LICENSE"); const char *ldest = expected_link(score, prefix, m->license); char *q; @@ -93,11 +94,12 @@ static void handle_license_link(struct manifest *m, struct score *score) extern struct ccanlint license_exists; static void check_has_license(struct manifest *m, - unsigned int *timeleft, struct score *score) + unsigned int *timeleft UNNEEDED, + struct score *score) { char buf[PATH_MAX]; ssize_t len; - char *license = tal_fmt(m, "%s/LICENSE", m->dir); + char *license = path_join(m, m->dir, "LICENSE"); const char *expected; struct doc_section *d; const char *prefix = link_prefix(m);