Differences From Artifact [5ef86daddc]:
- File src/file.c — part of check-in [12c665068d] at 2016-10-05 00:13:25 on branch trunk — Give a better error message when unable to open a file that uses one of the Windows reserved names, like "AUX" or "LPT3". (user: drh size: 38014) [more...]
To Artifact [71a65cc15c]:
- File src/file.c — part of check-in [2c42b217e5] at 2016-10-20 16:48:05 on branch trunk — Remove extra newlines from calls to fossil_fatal() (user: andygoth size: 38012) [more...]
| ︙ | |||
861 862 863 864 865 866 867 | 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 | - + |
*/
void file_getcwd(char *zBuf, int nBuf){
#ifdef _WIN32
win32_getcwd(zBuf, nBuf);
#else
if( getcwd(zBuf, nBuf-1)==0 ){
if( errno==ERANGE ){
|
| ︙ |