diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-02-21 18:04:10 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-02-21 18:04:10 (GMT) |
commit | a2af1a5a5a73064328246f6c2b2233365e54acf3 (patch) | |
tree | b13880b86f97bebed3e13bfa2dd7139bbe5200e0 /Modules | |
parent | f2f373f5931be48efc3f6fa2c2faa1cca79dce75 (diff) | |
download | cpython-a2af1a5a5a73064328246f6c2b2233365e54acf3.zip cpython-a2af1a5a5a73064328246f6c2b2233365e54acf3.tar.gz cpython-a2af1a5a5a73064328246f6c2b2233365e54acf3.tar.bz2 |
Issue #23152: Renames attribute_data_to_stat to _Py_attribute_data_to_stat
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/posixmodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index cf59724..48738bd 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -1580,7 +1580,7 @@ get_target_path(HANDLE hdl, wchar_t **target_path) /* defined in fileutils.c */ int -attribute_data_to_stat(BY_HANDLE_FILE_INFORMATION *info, ULONG reparse_tag, struct _Py_stat_struct *result); +_Py_attribute_data_to_stat(BY_HANDLE_FILE_INFORMATION *info, ULONG reparse_tag, struct _Py_stat_struct *result); static int win32_xstat_impl_w(const wchar_t *path, struct _Py_stat_struct *result, @@ -1669,7 +1669,7 @@ win32_xstat_impl(const char *path, struct _Py_stat_struct *result, } else CloseHandle(hFile); } - attribute_data_to_stat(&info, reparse_tag, result); + _Py_attribute_data_to_stat(&info, reparse_tag, result); /* Set S_IEXEC if it is an .exe, .bat, ... */ dot = strrchr(path, '.'); @@ -1765,7 +1765,7 @@ win32_xstat_impl_w(const wchar_t *path, struct _Py_stat_struct *result, } else CloseHandle(hFile); } - attribute_data_to_stat(&info, reparse_tag, result); + _Py_attribute_data_to_stat(&info, reparse_tag, result); /* Set S_IEXEC if it is an .exe, .bat, ... */ dot = wcsrchr(path, '.'); |