Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix minor finfo line wrapping issue reported on mailing list. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
4d846d94d3b3944c9b8112a027eb6438 |
| User & Date: | andybradford 2013-09-10 14:32:32.729 |
Context
|
2013-09-10
| ||
| 14:35 | Make CSS consistent with other hrefs on in side box. check-in: fa9dfa478b user: andybradford tags: trunk | |
| 14:32 | Fix minor finfo line wrapping issue reported on mailing list. check-in: 4d846d94d3 user: andybradford tags: trunk | |
|
2013-09-09
| ||
| 13:13 | Tweaks to the change log. check-in: e7202edf0c user: drh tags: trunk | |
|
2013-08-09
| ||
| 01:09 | Fix incorrect wrapping of brief finfo output by simply reducing the size of the buffer passed to comment_print(). Closed-Leaf check-in: bdbf144ed3 user: andybradford tags: pending-review | |
Changes
Changes to src/finfo.c.
| ︙ | ︙ | |||
194 195 196 197 198 199 200 |
sqlite3_free(zOut);
}else{
blob_reset(&line);
blob_appendf(&line, "%.10s ", zCiUuid);
blob_appendf(&line, "%.10s ", zDate);
blob_appendf(&line, "%8.8s ", zUser);
blob_appendf(&line, "%8.8s ", zBr);
| | | 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
sqlite3_free(zOut);
}else{
blob_reset(&line);
blob_appendf(&line, "%.10s ", zCiUuid);
blob_appendf(&line, "%.10s ", zDate);
blob_appendf(&line, "%8.8s ", zUser);
blob_appendf(&line, "%8.8s ", zBr);
blob_appendf(&line,"%-39.39s", zCom );
comment_print(blob_str(&line), 0, 79);
}
}
db_finalize(&q);
blob_reset(&fname);
}
}
|
| ︙ | ︙ |