Diff
Not logged in

Differences From:

File src/allrepo.c part of check-in [0b49e4afba] - Fix the header comment (and hence the "help" message) for the "fossil all" command. by drh on 2009-08-14 14:03:14. [view]

To:

File src/allrepo.c part of check-in [7a2c37063a] - merge trunk into creole branch by bob on 2009-09-22 07:49:39. Also file src/allrepo.c part of check-in [0eb08b860c] - Change more system() calls into portable_system() in an effort to fix path quoting problems on windows. by drh on 2009-09-16 21:29:18. [view]

@@ -128,9 +128,9 @@
     zQFilename = quoteFilename(zFilename);
     zSyscmd = mprintf("%s %s %s", zFossil, zCmd, zQFilename);
     printf("%s\n", zSyscmd);
     fflush(stdout);
-    system(zSyscmd);
+    portable_system(zSyscmd);
     free(zSyscmd);
     free(zQFilename);
   }