Diff
Not logged in

Differences From:

File src/branch.c part of check-in [8b6cf431fb] - correct 'branch' subcommand usage string by bch on 2009-01-24 23:40:41. [view]

To:

File src/branch.c part of check-in [8be6204607] - 'fossil' encode tagnames for manifest (for ticket 15f49be6b2b1e) (allows for tags with spaces in name) by bharder on 2009-02-09 04:41:08. [view]

@@ -123,9 +123,9 @@
       " ORDER BY tagname",
       rootid);
   while( db_step(&q)==SQLITE_ROW ){
     const char *zTag = db_column_text(&q, 0);
-    blob_appendf(&branch, "T -%s *\n", zTag);
+    blob_appendf(&branch, "T -%F *\n", zTag);
   }
   db_finalize(&q);
 
   blob_appendf(&branch, "U %F\n", g.zLogin);