diff options
Diffstat (limited to 'winsup/cygwin/path.cc')
-rw-r--r-- | winsup/cygwin/path.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc index f49290ac2..c636fb547 100644 --- a/winsup/cygwin/path.cc +++ b/winsup/cygwin/path.cc @@ -3438,9 +3438,10 @@ cygwin_conv_to_full_posix_path (const char *path, char *posix_path) extern "C" char * realpath (const char *path, char *resolved) { + extern suffix_info stat_suffixes[]; int err; - path_conv real_path (path, PC_SYM_FOLLOW | PC_FULL); + path_conv real_path (path, PC_SYM_FOLLOW | PC_FULL, stat_suffixes); if (real_path.error) err = real_path.error; |