From 88f115b0d42a70a3e696212e69fa3fa29e655c82 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Thu, 13 Feb 2003 02:15:42 +0000 Subject: [PATCH] Ummm, try to get it right this time --- Modules/socketmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) { -- 2.40.0