Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix the mtime computation for "fossil all ui" on windows. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
219f3e6b7ee40d03ddc76a6dfc47ca1f |
User & Date: | drh 2018-02-23 18:45:45.111 |
Context
2018-02-23
| ||
21:24 | Remove the mkdownload.html file from the documentation folder, since it is no longer used. Remove mention of OpenBSD from installation instructions, since precompiled binaries for that platform are no longer provided. ... (check-in: c44d9e4d user: drh tags: trunk) | |
18:45 | Fix the mtime computation for "fossil all ui" on windows. ... (check-in: 219f3e6b user: drh tags: trunk) | |
2018-02-16
| ||
19:57 | Fix a typos and improve the wording on the failure-to-upgrade-to-HTTPS error screen. ... (check-in: 01984ee0 user: drh tags: trunk) | |
Changes
Changes to src/main.c.
︙ | ︙ | |||
1299 1300 1301 1302 1303 1304 1305 | const char *zName = db_column_text(&q, 0); int nName = (int)strlen(zName); char *zUrl; char *zAge; char *zFull; if( nName<7 ) continue; zUrl = sqlite3_mprintf("%.*s", nName-7, zName); | > > > > > > | | 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 | const char *zName = db_column_text(&q, 0); int nName = (int)strlen(zName); char *zUrl; char *zAge; char *zFull; if( nName<7 ) continue; zUrl = sqlite3_mprintf("%.*s", nName-7, zName); if( zName[0]=='/' #ifdef _WIN32 || sqlite3_strglob("[a-zA-Z]:/*", zName)==0 #endif ){ zFull = mprintf("%s", zName); }else if ( allRepo ){ zFull = mprintf("/%s", zName); }else{ zFull = mprintf("%s/%s", g.zRepositoryName, zName); } iMTime = file_mtime(zFull, ExtFILE); fossil_free(zFull); if( iMTime<=0 ){ |
︙ | ︙ |