Issue #23618: Fix internal_connect_select()

This commit is contained in:
Victor Stinner 2015-03-31 14:24:47 +02:00
parent 416f2e66ca
commit dd83bd2f9c

View File

@ -680,7 +680,7 @@ internal_select(PySocketSockObject *s, int writing, _PyTime_t interval)
static int
internal_connect_select(PySocketSockObject *s)
{
return internal_select(s, 1, s->sock_timeout, 1);
return internal_select_impl(s, 1, s->sock_timeout, 1);
}
/*