Check-in [5bccc5a526]
Not logged in
Overview

SHA1 Hash:5bccc5a526d4927c9d79f139f8bd02cb5a78498a
Date: 2009-12-10 02:25:45
User: rwilson
Comment:reserve the use of brackets in stdout for artifacts
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/branch.c from [3ef4b504fa] to [80adbdb5e4].

@@ -132,11 +132,11 @@
   md5sum_blob(&branch, &mcksum);
   blob_appendf(&branch, "Z %b\n", &mcksum);
   if( !noSign && clearsign(&branch, &branch) ){
     Blob ans;
     blob_zero(&ans);
-    prompt_user("unable to sign manifest.  continue [y/N]? ", &ans);
+    prompt_user("unable to sign manifest.  continue (y/N)? ", &ans);
     if( blob_str(&ans)[0]!='y' ){
       db_end_transaction(1);
       exit(1);
     }
   }