X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fcontext_replace.c;h=4416eee4932fb10f184280e5b58564ae1b88f745;hp=2cdadf0b9b387514f0a346da40d9a44299a4e0b9;hb=d2f12554a254e814dcdafb3828fc0d9936154eef;hpb=8e0d377cb731b0fbc39a9b2874ec6b772e53620b diff --git a/sbr/context_replace.c b/sbr/context_replace.c index 2cdadf0..4416eee 100644 --- a/sbr/context_replace.c +++ b/sbr/context_replace.c @@ -38,7 +38,7 @@ context_replace (char *key, char *value) * this key, and replace its value if found. */ for (np = m_defs;; np = np->n_next) { - if (!strcasecmp (np->n_name, key)) { + if (!mh_strcasecmp (np->n_name, key)) { if (strcmp (value, np->n_field)) { if (!np->n_context) admonish (NULL, "bug: context_replace(key=\"%s\",value=\"%s\")", key, value);