]> git.marmaro.de Git - mmh/blobdiff - sbr/context_replace.c
Drop register storage class
[mmh] / sbr / context_replace.c
index 6b3aa2f9742b349e0a9d1ac0cd32e4b177a9b3cf..dd6e63149d4d647b63a2e5734853a34b178c55ba 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)