From: Ken Hornstein Date: Mon, 19 Nov 2012 18:47:46 +0000 (-0500) Subject: Change fmt_findcasecmp() to fmt_findcasecomp(). The new name is more X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=a814e2957bf53b2ecef28593f325cd082122ba52 Change fmt_findcasecmp() to fmt_findcasecomp(). The new name is more consistent. --- diff --git a/h/fmt_scan.h b/h/fmt_scan.h index a2bff89..8de6f23 100644 --- a/h/fmt_scan.h +++ b/h/fmt_scan.h @@ -178,7 +178,7 @@ struct comp *fmt_findcomp(char *component); * Identical to fmd_findcomp(), but is case-INSENSITIVE. */ -struct comp *fmt_findcasecmp(char *component); +struct comp *fmt_findcasecomp(char *component); /* * Add a component entry to the component hash table diff --git a/sbr/fmt_compile.c b/sbr/fmt_compile.c index 148d35c..57bf516 100644 --- a/sbr/fmt_compile.c +++ b/sbr/fmt_compile.c @@ -877,7 +877,7 @@ fmt_findcomp(char *component) */ struct comp * -fmt_findcasecmp(char *component) +fmt_findcasecomp(char *component) { struct comp *cm;