Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix an obscure possible bug in "fossil ui DIR" if there are 96 or more additional arguments. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
de6f88a6f00fa8540a742fd30656e179 |
| User & Date: | drh 2024-12-10 00:09:47.609 |
Context
|
2024-12-10
| ||
| 12:53 | Add the /ckout page. ... (check-in: d35d201840 user: drh tags: trunk) | |
| 06:25 | Merge trunk into merge-info-html branch for mergestat improvements. ... (check-in: f0a48c8faa user: stephan tags: merge-info-html) | |
| 00:36 | Begin adding the infrastructure for a /ckout webpage. ... (check-in: c620a8c74c user: drh tags: ckout-page) | |
| 00:09 | Fix an obscure possible bug in "fossil ui DIR" if there are 96 or more additional arguments. ... (check-in: de6f88a6f0 user: drh tags: trunk) | |
|
2024-12-09
| ||
| 23:03 | Update the built-in SQLite to the latests trunk version, which includes fixes found in 3.47.2, plus other enhancements. ... (check-in: 077e53a341 user: drh tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
3354 3355 3356 3357 3358 3359 3360 |
** chdir to that check-out so that the current version
** gets highlighted in the timeline by default. */
const char * zDir = g.argv[2];
if(dir_has_ckout_db(zDir)){
if(0!=file_chdir(zDir, 0)){
fossil_fatal("Cannot chdir to %s", zDir);
}
| | | 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 |
** chdir to that check-out so that the current version
** gets highlighted in the timeline by default. */
const char * zDir = g.argv[2];
if(dir_has_ckout_db(zDir)){
if(0!=file_chdir(zDir, 0)){
fossil_fatal("Cannot chdir to %s", zDir);
}
findServerArg = g.argc;
fCreate = 0;
g.argv[2] = 0;
--g.argc;
}
}
if( isUiCmd && 3==g.argc
&& (zRemote = (char*)file_skip_userhost(g.argv[2]))!=0
|
| ︙ | ︙ |