chiark / gitweb /
delta: drop PHP'ism
authorLennart Poettering <lennart@poettering.net>
Mon, 21 May 2012 00:02:40 +0000 (02:02 +0200)
committerLennart Poettering <lennart@poettering.net>
Mon, 21 May 2012 00:02:40 +0000 (02:02 +0200)
src/delta/delta.c

index cb63b4a407d968a85ae9618e11fa5e541347e48a..25c1f960fd8eda56137af9e5425c123081b6dd92 100644 (file)
@@ -334,17 +334,17 @@ static int parse_flags(const char *flag_str, int flags) {
         size_t l;
 
         FOREACH_WORD(w, l, flag_str, state) {
-                if (strncmp("masked", w, l) == 0) {
+                if (strncmp("masked", w, l) == 0)
                         flags |= SHOW_MASKED;
-                } else if (strncmp ("equivalent", w, l) == 0) {
+                else if (strncmp ("equivalent", w, l) == 0)
                         flags |= SHOW_EQUIVALENT;
-                } else if (strncmp("redirected", w, l) == 0) {
+                else if (strncmp("redirected", w, l) == 0)
                         flags |= SHOW_REDIRECTED;
-                } else if (strncmp("override", w, l) == 0) {
+                else if (strncmp("overriden", w, l) == 0)
                         flags |= SHOW_OVERRIDEN;
-                } else if (strncmp("unchanged", w, l) == 0) {
+                else if (strncmp("unchanged", w, l) == 0)
                         flags |= SHOW_UNCHANGED;
-                } else if (strncmp("default", w, l) == 0) {
+                else if (strncmp("default", w, l) == 0)
                         flags |= SHOW_DEFAULTS;
                 else
                         return -EINVAL;