]> gitweb.hamatoma.de Git - cpidjinn/commitdiff
error in option evaluation
authorhm <frog@hamatoma.de>
Tue, 14 Jun 2016 20:38:24 +0000 (22:38 +0200)
committerhm <frog@hamatoma.de>
Tue, 14 Jun 2016 20:38:24 +0000 (22:38 +0200)
Server/cpidjinn.cpp
util/timer.cpp

index 380355ea490c06e86f3418e3f344196e6f315c8c..f37013c09cbd351285811273f80672a8c8de726d 100644 (file)
@@ -39,9 +39,9 @@ int main(int argc, char** argv){
 
        while(argc > 1 && argv[1][0] == '-'){
                char* arg = argv[1];
-               if (strcmp(arg, "-s") == 0 || strcmp(arg, "--simulation")){
+               if (strcmp(arg, "-s") == 0 || strcmp(arg, "--simulation") == 0){
                        simulation = true;
-               } else if (strcmp(arg, "-t") == 0 || strcmp(arg, "--test")){
+               } else if (strcmp(arg, "-t") == 0 || strcmp(arg, "--test") == 0){
                        test(argc - 2, argv + 2, &logger);
                } else {
                        logger.sayf(LOG_ERROR, "unknown option: %s", arg);
index 5b2b0397d1fbab65d69ef296625ecfc0c0535074..4ff3fafa3bfe02e17e9f2784fb1d4a5094c3a142 100644 (file)
@@ -1,5 +1,5 @@
 #include "util.hpp"
-#define TRACE_ON
+//#define TRACE_ON
 #include "trace.hpp"
 /**
  * Constructor.