Browse Source

ctl: removed not needed extra paranthesis

(cherry picked from commit efda774f6391f1e909a9967898c64fb25f53eeba)
Daniel-Constantin Mierla 11 years ago
parent
commit
ea6b37271c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/ctl/fifo_server.c

+ 1 - 1
modules/ctl/fifo_server.c

@@ -757,7 +757,7 @@ process:
 			ERR("File separator missing\n");
 			goto consume;
 		}
-		if ((file_sep == context.method)) {
+		if (file_sep == context.method) {
 			ERR("Empty command\n");
 			goto consume;
 		}