Commit 7aec4a2e authored by Andrew MacIntyre's avatar Andrew MacIntyre

work around name clash with OS/2 TCPIP routine sock_init()

parent 3fcd4523
...@@ -2057,7 +2057,7 @@ sock_new(PyTypeObject *type, PyObject *args, PyObject *kwds) ...@@ -2057,7 +2057,7 @@ sock_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
/*ARGSUSED*/ /*ARGSUSED*/
static int static int
sock_init(PyObject *self, PyObject *args, PyObject *kwds) sock_initobj(PyObject *self, PyObject *args, PyObject *kwds)
{ {
PySocketSockObject *s = (PySocketSockObject *)self; PySocketSockObject *s = (PySocketSockObject *)self;
SOCKET_T fd; SOCKET_T fd;
...@@ -2133,7 +2133,7 @@ static PyTypeObject sock_type = { ...@@ -2133,7 +2133,7 @@ static PyTypeObject sock_type = {
0, /* tp_descr_get */ 0, /* tp_descr_get */
0, /* tp_descr_set */ 0, /* tp_descr_set */
0, /* tp_dictoffset */ 0, /* tp_dictoffset */
sock_init, /* tp_init */ sock_initobj, /* tp_init */
0, /* set below */ /* tp_alloc */ 0, /* set below */ /* tp_alloc */
sock_new, /* tp_new */ sock_new, /* tp_new */
0, /* set below */ /* tp_free */ 0, /* set below */ /* tp_free */
......
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