Check-in [93efce820b]
Not logged in
Overview

SHA1 Hash:93efce820b7a0d624dcadd579c592f215df2c4ab
Date: 2009-12-11 16:14:55
User: stephan
Comment:corrected some mis-placed code from commit #9517cc7486
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/checkin.c from [3310877301] to [756aa68723].

@@ -563,17 +563,15 @@
     blob_zero(&ans);
     prompt_user("empty check-in comment.  continue [y/N]? ", &ans);
     if( blob_str(&ans)[0]!='y' ){
       db_end_transaction(1);
       exit(1);
-    }else{
-      db_multi_exec("REPLACE INTO vvar VALUES('ci-comment',%B)", &comment);
-      db_end_transaction(0);
-      db_begin_transaction();
     }
   }
-
+  db_multi_exec("REPLACE INTO vvar VALUES('ci-comment',%B)", &comment);
+  db_end_transaction(0);
+  db_begin_transaction();
   /* Step 1: Insert records for all modified files into the blob
   ** table. If there were arguments passed to this command, only
   ** the identified fils are inserted (if they have been modified).
   */
   db_prepare(&q,