Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | reserve the use of brackets in stdout for artifacts |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
5bccc5a526d4927c9d79f139f8bd02cb |
| User & Date: | rwilson 2009-12-10 02:25:45.000 |
Context
|
2009-12-11
| ||
| 15:49 | added -M/--message-file FILENAME argument for commit. ... (check-in: 9517cc7486 user: stephan tags: trunk) | |
|
2009-12-10
| ||
| 02:25 | reserve the use of brackets in stdout for artifacts ... (check-in: 5bccc5a526 user: rwilson tags: trunk) | |
| 02:19 | reserve the use of brackets in stdout for artifacts ... (check-in: 6ae51190cc user: rwilson tags: trunk) | |
Changes
Changes to src/branch.c.
| ︙ | ︙ | |||
130 131 132 133 134 135 136 |
blob_appendf(&branch, "U %F\n", g.zLogin);
md5sum_blob(&branch, &mcksum);
blob_appendf(&branch, "Z %b\n", &mcksum);
if( !noSign && clearsign(&branch, &branch) ){
Blob ans;
blob_zero(&ans);
| | | 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
blob_appendf(&branch, "U %F\n", g.zLogin);
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);
if( blob_str(&ans)[0]!='y' ){
db_end_transaction(1);
exit(1);
}
}
brid = content_put(&branch, 0, 0);
|
| ︙ | ︙ |