Przeglądaj źródła

Ok! ./mystic -cfg away! We don't CARE!

This fixes doing local configuration.
So long as we don't see -SLx setting
the node number, harry sleeps.
bugz 4 lat temu
rodzic
commit
9892c3bae3
1 zmienionych plików z 17 dodań i 1 usunięć
  1. 17 1
      hharry.cpp

+ 17 - 1
hharry.cpp

@@ -262,10 +262,26 @@ int main(int argc, char *argv[]) {
 
   if (node == -1) {
     // likely this is someone trying to run something
-    printf("Try ./mySTIC (whatever it is you're trying)!\n");
+    char *args[20]; // max 20 args
+    int x;
+    char new_exec[] = TARGET;
+
+    // build new args list
+    args[0] = new_exec;
+
+    for (x = 1; x < argc; x++) {
+      args[x] = argv[x];
+    };
+
+    // null term the list
+    args[x] = NULL;
+
+    // run Mystic, run!
+    execvp(TARGET, args);
     return 2;
   }
 
+
   string logfile;
   {
     ostringstream buffer;