]> git.marmaro.de Git - mmh/blobdiff - sbr/context_replace.c
* (mh_strcasecmp): Rename the private strcasecmp function to mh_strcasecmp.
[mmh] / sbr / context_replace.c
index 2cdadf0b9b387514f0a346da40d9a44299a4e0b9..4416eee4932fb10f184280e5b58564ae1b88f745 100644 (file)
@@ -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);