Diff
Not logged in

Differences From:

File src/checkin.c part of check-in [b7a93530ef] - Fixed description of file checkin.c. Implemented new command test-import-manifest. Updated fossil accessor code in the importer to the changed command line API of test-import-manifest. by aku on 2008-02-01 05:32:04. [view]

To:

File src/checkin.c part of check-in [bd9703dee6] - Fix bad setup of comment for manifest. by aku on 2008-02-02 05:05:01. [view]

@@ -701,9 +701,9 @@
 
   if (!strlen(zComment)) {
     blob_appendf(&manifest, "C %F\n", "(no comment)");
   } else {
-    blob_appendf(&manifest, "C %F\n", blob_str(&comment));
+    blob_appendf(&manifest, "C %F\n", zComment);
   }
 
   zDateFmt = db_text(0, "SELECT datetime(%Q,'unixepoch')",zDate);
   zDateFmt[10] = 'T';