Drop register storage class
[mmh] / sbr / context_replace.c
index 6b3aa2f..dd6e631 100644 (file)
@@ -13,7 +13,7 @@
 void
 context_replace(char *key, char *value)
 {
-       register struct node *np;
+       struct node *np;
 
        /*
        ** If list is emtpy, allocate head of profile/context list.
@@ -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)