]> granicus.if.org Git - python/commitdiff
Patch #924294: Do not check for AF_INET6 if it is not defined.
authorMartin v. Löwis <martin@v.loewis.de>
Wed, 2 Jun 2004 12:35:29 +0000 (12:35 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Wed, 2 Jun 2004 12:35:29 +0000 (12:35 +0000)
Will backport to 2.3.

Modules/socketmodule.c

index 7efb890ff5d4927cf749c3a7712f7b659cb29166..8bf14d4ac6f68cf172ce519d73f86d396290ec10 100644 (file)
@@ -3100,7 +3100,7 @@ socket_inet_pton(PyObject *self, PyObject *args)
                return NULL;
        }
 
-#ifndef ENABLE_IPV6
+#if !defined(ENABLE_IPV6) && defined(AF_INET6)
        if(af == AF_INET6) {
                PyErr_SetString(socket_error,
                                "can't use AF_INET6, IPv6 is disabled");