]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fixed indentation
authorAron Podrigal <aronp@guaranteedplus.com>
Sun, 28 Dec 2014 04:44:03 +0000 (23:44 -0500)
committerAron Podrigal <aronp@guaranteedplus.com>
Sun, 28 Dec 2014 04:44:03 +0000 (23:44 -0500)
src/mod/applications/mod_commands/mod_commands.c

index 88800ab5e41cdc67e079953c165465a7d1dc8569..bc761a391155fe771ab7d8887b01541c6b02f960 100644 (file)
@@ -1922,9 +1922,9 @@ SWITCH_STANDARD_API(cond_function)
                        }
                }
                if (!*expr) {
-                        goto error;
-                }
-                       *expr++ = '\0';
+                       goto error;
+               }
+               *expr++ = '\0';
 
                if (!switch_isspace(*expr)) {
                        goto error;
@@ -1934,20 +1934,20 @@ SWITCH_STANDARD_API(cond_function)
                        *expr++ = '\0';
                } else {
                        goto error;
-                }
+               }
        }
 
        while (switch_isspace(*expr)) expr++;
 
-        switch (*expr) {
-        case '!':
-        case '<':
-        case '>':
-        case '=':
-                goto operator;
-        default:
-                goto error;
-        }
+       switch (*expr) {
+       case '!':
+       case '<':
+       case '>':
+       case '=':
+               goto operator;
+       default:
+               goto error;
+       }
 
 operator: