summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-02-13 02:15:42 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-02-13 02:15:42 (GMT)
commit88f115b0d42a70a3e696212e69fa3fa29e655c82 (patch)
treed5dc729fc114ab2bf34d43434d783f434569bd59 /Modules/socketmodule.c
parent10b214c2fd837d534eda75510a118f862d57da02 (diff)
downloadcpython-88f115b0d42a70a3e696212e69fa3fa29e655c82.zip
cpython-88f115b0d42a70a3e696212e69fa3fa29e655c82.tar.gz
cpython-88f115b0d42a70a3e696212e69fa3fa29e655c82.tar.bz2
Ummm, try to get it right this time
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 d3ace6b..f7bbeae 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)) {