Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix an incorrect comment in finfo.c. No code changes. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
35aed076214bb05938f6ad818f2ce5d2 |
| User & Date: | drh 2011-01-17 02:39:24.093 |
Context
|
2011-01-17
| ||
| 02:39 | Update to the latest prerelease version fo SQLite 3.7.5. check-in: 464775a520 user: drh tags: trunk | |
| 02:39 | Fix an incorrect comment in finfo.c. No code changes. check-in: 35aed07621 user: drh tags: trunk | |
| 02:38 | A better fix for the intptr_t casting problem - this one works on older compilers. Ticket [6585b6c5d9058212ceb] check-in: c1f6df703a user: drh tags: trunk | |
Changes
Changes to src/finfo.c.
| ︙ | ︙ | |||
205 206 207 208 209 210 211 |
zPrevDate[0] = 0;
zFilename = PD("name","");
db_prepare(&q,
"SELECT"
" datetime(event.mtime,'localtime')," /* Date of change */
" coalesce(event.ecomment, event.comment)," /* Check-in comment */
" coalesce(event.euser, event.user)," /* User who made chng */
| | | | 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
zPrevDate[0] = 0;
zFilename = PD("name","");
db_prepare(&q,
"SELECT"
" datetime(event.mtime,'localtime')," /* Date of change */
" coalesce(event.ecomment, event.comment)," /* Check-in comment */
" coalesce(event.euser, event.user)," /* User who made chng */
" mlink.pid," /* Parent rid */
" mlink.fid," /* File rid */
" (SELECT uuid FROM blob WHERE rid=mlink.pid)," /* Parent file uuid */
" (SELECT uuid FROM blob WHERE rid=mlink.fid)," /* Current file uuid */
" (SELECT uuid FROM blob WHERE rid=mlink.mid)," /* Check-in uuid */
" event.bgcolor," /* Background color */
" (SELECT value FROM tagxref WHERE tagid=%d AND tagtype>0"
" AND tagxref.rid=mlink.mid)" /* Tags */
" FROM mlink, event"
|
| ︙ | ︙ |