X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;ds=sidebyside;f=tools%2Fdoc_extract.c;h=c8ecbf8e6965240c02630884bc64b9af44ccfdf6;hb=90e94990efbd7fb280f5ff30d2da4401d7ce27fc;hp=b8969ef23504b3108bb88355ce0f70a176113e84;hpb=7beaa3448fa8e6015798c1609f33d96e8986063d;p=ccan diff --git a/tools/doc_extract.c b/tools/doc_extract.c index b8969ef2..c8ecbf8e 100644 --- a/tools/doc_extract.c +++ b/tools/doc_extract.c @@ -59,9 +59,9 @@ int main(int argc, char *argv[]) if (!streq(d->function, function)) continue; } - if (strcasecmp(type, "all") == 0) + if (streq(type, "all")) printf("%s:\n", d->type); - else if (strcasecmp(d->type, type) != 0) + else if (!streq(d->type, type)) continue; for (j = 0; j < d->num_lines; j++)