summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-02-21 18:04:10 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-02-21 18:04:10 (GMT)
commita2af1a5a5a73064328246f6c2b2233365e54acf3 (patch)
treeb13880b86f97bebed3e13bfa2dd7139bbe5200e0 /Modules
parentf2f373f5931be48efc3f6fa2c2faa1cca79dce75 (diff)
downloadcpython-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.c6
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, '.');