Explicit checks for return values of strcmp().
[mmh] / sbr / context_replace.c
index 6b3aa2f..4d81356 100644 (file)
@@ -36,7 +36,7 @@ context_replace(char *key, char *value)
        */
        for (np = m_defs;; np = np->n_next) {
                if (!mh_strcasecmp(np->n_name, key)) {
-                       if (strcmp(value, np->n_field)) {
+                       if (strcmp(value, np->n_field)!=0) {
                                if (!np->n_context)
                                        admonish(NULL, "bug: context_replace(key=\"%s\",value=\"%s\")", key, value);
                                if (np->n_field)