mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #23618: Fix internal_connect_select()
This commit is contained in:
parent
416f2e66ca
commit
dd83bd2f9c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue