Diff
Not logged in

Differences From:

File src/checkin.c part of check-in [bbd758ecc3] - Always print the "project-name" using the command-line "info" command. Avoid an extra "/" character when constructing files for check-in. by drh on 2009-09-11 18:27:55. [view]

To:

File src/checkin.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]

@@ -291,9 +291,9 @@
 #endif
   blob_write_to_file(&text, zFile);
   zCmd = mprintf("%s \"%s\"", zEditor, zFile);
   printf("%s\n", zCmd);
-  if( system(zCmd) ){
+  if( portable_system(zCmd) ){
     fossil_panic("editor aborted");
   }
   blob_reset(&text);
   blob_read_from_file(&text, zFile);