Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | When the --reset option is used, reset the cached stat() information before and after dealing with it. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | symlinks |
| Files: | files | file ages | folders |
| SHA1: |
39ea7a2f6134c3c4a5f4f8b02bbd5493 |
| User & Date: | mistachkin 2017-02-14 01:03:48.442 |
Context
|
2017-02-14
| ||
| 03:04 | For safety, the --verily option to clean should force all symlinks to be treated as normal content files. Closed-Leaf check-in: 8fdf8cbe9c user: mistachkin tags: symlinks | |
| 01:03 | When the --reset option is used, reset the cached stat() information before and after dealing with it. check-in: 39ea7a2f61 user: mistachkin tags: symlinks | |
| 00:59 | Add '--reset' option to the file test commands. Other minor improvements. check-in: 996ebab71b user: mistachkin tags: symlinks | |
Changes
Changes to src/file.c.
| ︙ | ︙ | |||
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 |
fossil_print(" file_mtime = %s\n", zBuf);
fossil_print(" file_mode = %d\n", file_wd_mode(zPath));
fossil_print(" file_isfile = %d\n", file_wd_isfile(zPath));
fossil_print(" file_isfile_or_link = %d\n", file_wd_isfile_or_link(zPath));
fossil_print(" file_islink = %d\n", file_wd_islink(zPath));
fossil_print(" file_isexe = %d\n", file_wd_isexe(zPath));
fossil_print(" file_isdir = %d\n", file_wd_isdir(zPath));
}
}
/*
** COMMAND: test-file-environment
**
** Usage: %fossil test-file-environment FILENAME...
| > | 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 |
fossil_print(" file_mtime = %s\n", zBuf);
fossil_print(" file_mode = %d\n", file_wd_mode(zPath));
fossil_print(" file_isfile = %d\n", file_wd_isfile(zPath));
fossil_print(" file_isfile_or_link = %d\n", file_wd_isfile_or_link(zPath));
fossil_print(" file_islink = %d\n", file_wd_islink(zPath));
fossil_print(" file_isexe = %d\n", file_wd_isexe(zPath));
fossil_print(" file_isdir = %d\n", file_wd_isdir(zPath));
if( reset ) resetStat();
}
}
/*
** COMMAND: test-file-environment
**
** Usage: %fossil test-file-environment FILENAME...
|
| ︙ | ︙ |