Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a crash if the test-file-environment command is called from outside a check-out. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
3bb9cbe8cc1fdf834c05277c33350c76 |
| User & Date: | florian 2024-10-15 05:25:00.000 |
Context
|
2024-10-15
| ||
| 05:36 | Amend [9919dfbbaa]: fix a comment typo and rename a variable. check-in: d7d106227f user: florian tags: trunk | |
| 05:25 | Fix a crash if the test-file-environment command is called from outside a check-out. check-in: 3bb9cbe8cc user: florian tags: trunk | |
| 05:21 | Mention the comment formatter updates in the change as a hint to users encountering problems with timeline output. check-in: 3c6e5a1e4c user: florian tags: trunk | |
Changes
Changes to src/file.c.
| ︙ | ︙ | |||
1639 1640 1641 1642 1643 1644 1645 |
}
db_find_and_open_repository(OPEN_ANY_SCHEMA|OPEN_OK_NOT_FOUND, 0);
fossil_print("filenames_are_case_sensitive() = %d\n",
filenames_are_case_sensitive());
if( zAllow ){
g.allowSymlinks = !is_false(zAllow);
}
| | | 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 |
}
db_find_and_open_repository(OPEN_ANY_SCHEMA|OPEN_OK_NOT_FOUND, 0);
fossil_print("filenames_are_case_sensitive() = %d\n",
filenames_are_case_sensitive());
if( zAllow ){
g.allowSymlinks = !is_false(zAllow);
}
if( zRoot==0 ) zRoot = g.zLocalRoot==0 ? "" : g.zLocalRoot;
fossil_print("db_allow_symlinks() = %d\n", db_allow_symlinks());
fossil_print("local-root = [%s]\n", zRoot);
for(i=2; i<g.argc; i++){
char *z;
emitFileStat(g.argv[i], slashFlag, resetFlag);
z = file_canonical_name_dup(g.argv[i]);
fossil_print(" file_canonical_name = %s\n", z);
|
| ︙ | ︙ |