diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2013-06-10 08:36:28 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2013-06-10 08:36:28 (GMT) |
commit | a822d366750ea0817276f35fd3adcd894472a70a (patch) | |
tree | b99012e0114acb7fcf5327e42cc36f87b1e21469 /Modules | |
parent | 6f50b810b78eaecff78bb7e2a3109d1cc672dbe0 (diff) | |
download | cpython-a822d366750ea0817276f35fd3adcd894472a70a.zip cpython-a822d366750ea0817276f35fd3adcd894472a70a.tar.gz cpython-a822d366750ea0817276f35fd3adcd894472a70a.tar.bz2 |
Ensure that the fix for #17269 also works on OSX 10.4
AI_NUMERICSERV isn't defined on OSX 10.4.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/socketmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index b957928..9b58a11 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -5041,7 +5041,7 @@ socket_getaddrinfo(PyObject *self, PyObject *args, PyObject* kwargs) PyErr_SetString(PyExc_OSError, "Int or String expected"); goto err; } -#ifdef __APPLE__ +#if defined(__APPLE__) && defined(AI_NUMERICSERV) if ((flags & AI_NUMERICSERV) && (pptr == NULL || (pptr[0] == '0' && pptr[1] == 0))) { /* On OSX upto at least OSX 10.8 getaddrinfo crashes * if AI_NUMERICSERV is set and the servname is NULL or "0". |