From 90bb2919de1d215c4f940dede916789d3d941ce8 Mon Sep 17 00:00:00 2001 From: Harco de Hilster <harcoh@caos.kun.nl> Date: Sun, 12 Sep 1999 18:49:59 +0000 Subject: [PATCH] fixed typo (?) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3621 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/unix/gsocket.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/unix/gsocket.c b/src/unix/gsocket.c index ad900ef994..55a198c16a 100644 --- a/src/unix/gsocket.c +++ b/src/unix/gsocket.c @@ -726,9 +726,9 @@ void _GSocket_Configure_Callbacks(GSocket *socket) int count; for (count=0;count<GSOCK_MAX_EVENT;count++) { if ((socket->m_cbacks[count]) != NULL) { - GSocket_Enable(socket, count); + _GSocket_Enable(socket, count); } else { - GSocket_Disable(socket, count); + _GSocket_Disable(socket, count); } } } -- 2.47.2