Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix incorrect wrapping of brief finfo output by simply reducing the size of the buffer passed to comment_print(). |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | pending-review |
| Files: | files | file ages | folders |
| SHA1: |
bdbf144ed395107e10de0e18bf6cb646 |
| User & Date: | andybradford 2013-08-09 01:09:07.736 |
Context
|
2013-09-10
| ||
| 14:32 | Fix minor finfo line wrapping issue reported on mailing list. check-in: 4d846d94d3 user: andybradford 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 | |
|
2013-08-08
| ||
| 14:00 | Merge the fork in trunk. check-in: 0e822db7f1 user: drh tags: trunk | |
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);
}
}
|
| ︙ | ︙ |