Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Harmless comment typo fix. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b948eaeaff1dde078dbb44b1b2df12ff |
User & Date: | drh 2018-03-26 01:05:23.254 |
Context
2018-03-26
| ||
13:21 | Fix a pledge() problem with the status command. ... (check-in: e765f90e user: drh tags: trunk) | |
01:05 | Harmless comment typo fix. ... (check-in: b948eaea user: drh tags: trunk) | |
2018-03-23
| ||
15:37 | Disable the SQLite automatic index warning on non-debug builds. ... (check-in: 1336c4af user: drh tags: trunk) | |
Changes
Changes to src/etag.c.
︙ | ︙ | |||
130 131 132 133 134 135 136 | cgi_reply(); fossil_exit(0); } /* ** Accept a new Last-Modified time. This routine should be called by ** page generators that know a valid last-modified time. This routine | | | 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | cgi_reply(); fossil_exit(0); } /* ** Accept a new Last-Modified time. This routine should be called by ** page generators that know a valid last-modified time. This routine ** might generate a 304 Not Modified reply and exit(), never returning. ** Or, if not, it will cause a Last-Modified: header to be included in the ** reply. */ void etag_last_modified(sqlite3_int64 mtime){ const char *zIfModifiedSince; sqlite3_int64 x, exeMtime; assert( iEtagMtime==0 ); /* Only call this routine once */ |
︙ | ︙ |