mirror of
https://github.com/python/cpython.git
synced 2024-11-27 11:55:13 +08:00
Check for correct macro, code uses S_ISDIR().
This commit is contained in:
commit
9975877f46
@ -171,7 +171,7 @@ fileio_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
||||
static int
|
||||
dircheck(fileio* self, PyObject *nameobj)
|
||||
{
|
||||
#if defined(HAVE_FSTAT) && defined(S_IFDIR) && defined(EISDIR)
|
||||
#if defined(HAVE_FSTAT) && defined(S_ISDIR) && defined(EISDIR)
|
||||
struct stat buf;
|
||||
if (self->fd < 0)
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user