Commit dd83bd2f authored by Victor Stinner's avatar Victor Stinner

Issue #23618: Fix internal_connect_select()

parent 416f2e66
...@@ -680,7 +680,7 @@ internal_select(PySocketSockObject *s, int writing, _PyTime_t interval) ...@@ -680,7 +680,7 @@ internal_select(PySocketSockObject *s, int writing, _PyTime_t interval)
static int static int
internal_connect_select(PySocketSockObject *s) internal_connect_select(PySocketSockObject *s)
{ {
return internal_select(s, 1, s->sock_timeout, 1); return internal_select_impl(s, 1, s->sock_timeout, 1);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment