From: Neal Norwitz Date: Thu, 13 Feb 2003 02:15:42 +0000 (+0000) Subject: Ummm, try to get it right this time X-Git-Tag: v2.3c1~1874 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=88f115b0d42a70a3e696212e69fa3fa29e655c82;p=python Ummm, try to get it right this time --- diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index d3ace6b70b..f7bbeae24e 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2713,7 +2713,7 @@ socket_inet_aton(PyObject *self, PyObject *args) /* Have to use inet_addr() instead */ char *ip_addr; -#if HAVE_INET_ATON +#ifdef HAVE_INET_ATON struct in_addr buf; if (!PyArg_ParseTuple(args, "s:inet_aton", &ip_addr)) {