summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r--Modules/socketmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index 98b6636..2eea726 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -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);
}
/*