Check for correct macro, code uses S_ISDIR().

This commit is contained in:
Christian Heimes 2013-06-23 23:52:40 +02:00
commit 9975877f46
1 changed files with 1 additions and 1 deletions

View File

@ -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;