X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=tools%2Fccanlint%2Ftests%2Flicense_exists.c;h=85ff79854082a096756f037ec1b415de4ee50cdd;hb=49a1a4366fdcea418582a97cb0bf700373b89868;hp=af1bc52a07c85e875829f54824c56bdad9540256;hpb=09d5cd70d7e8105a003ed9583eadb077de014f3b;p=ccan diff --git a/tools/ccanlint/tests/license_exists.c b/tools/ccanlint/tests/license_exists.c index af1bc52a..85ff7985 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; @@ -97,7 +98,7 @@ static void check_has_license(struct manifest *m, { 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);