Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a harmless compiler warning. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
95a6a658d40f4d4d7d77a37a68578ec5 |
| User & Date: | drh 2019-08-04 20:26:39.942 |
Context
|
2019-08-05
| ||
| 16:15 | Update custom MinGW makefile. ... (check-in: 759b10021d user: mistachkin tags: trunk) | |
|
2019-08-04
| ||
| 22:56 | Merge trunk ... (check-in: fc5f88d6d9 user: jan.nijtmans tags: cleanX) | |
| 20:26 | Fix a harmless compiler warning. ... (check-in: 95a6a658d4 user: drh tags: trunk) | |
| 20:23 | Improvements to the Security-Audit page - mostly in providing additional information about the files in the CGI extension folder. ... (check-in: a3bc6552ee user: drh tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
146 147 148 149 150 151 152 | sqlite3_int64 now; /* Seconds since 1970 */ int repositoryOpen; /* True if the main repository database is open */ unsigned iRepoDataVers; /* Initial data version for repository database */ char *zRepositoryOption; /* Most recent cached repository option value */ char *zRepositoryName; /* Name of the repository database file */ char *zLocalDbName; /* Name of the local database file */ char *zOpenRevision; /* Check-in version to use during database open */ | | | 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | sqlite3_int64 now; /* Seconds since 1970 */ int repositoryOpen; /* True if the main repository database is open */ unsigned iRepoDataVers; /* Initial data version for repository database */ char *zRepositoryOption; /* Most recent cached repository option value */ char *zRepositoryName; /* Name of the repository database file */ char *zLocalDbName; /* Name of the local database file */ char *zOpenRevision; /* Check-in version to use during database open */ const char *zCmdName; /* Name of the Fossil command currently running */ int localOpen; /* True if the local database is open */ char *zLocalRoot; /* The directory holding the local database */ int minPrefix; /* Number of digits needed for a distinct UUID */ int eHashPolicy; /* Current hash policy. One of HPOLICY_* */ int fSqlTrace; /* True if --sqltrace flag is present */ int fSqlStats; /* True if --sqltrace or --sqlstats are present */ int fSqlPrint; /* True if --sqlprint flag is present */ |
| ︙ | ︙ |