diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-03-01 08:31:07 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-03-01 08:31:07 (GMT) |
commit | 272cb40e31fd2eb194509bcc028998d324ba42c2 (patch) | |
tree | d5ac74392f35109c121c5f6d18fe8df687e80e39 /Modules/socketmodule.c | |
parent | 31e233aa7a02ed8e95227527223db947567830b4 (diff) | |
download | cpython-272cb40e31fd2eb194509bcc028998d324ba42c2.zip cpython-272cb40e31fd2eb194509bcc028998d324ba42c2.tar.gz cpython-272cb40e31fd2eb194509bcc028998d324ba42c2.tar.bz2 |
Patch #520062: Support IPv6 with VC.NET.
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r-- | Modules/socketmodule.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 2f954a9..92b8d4b 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -409,8 +409,11 @@ PyGAI_Err(int error) { PyObject *v; +#ifdef EAI_SYSTEM + /* EAI_SYSTEM is not available on Windows XP. */ if (error == EAI_SYSTEM) return PySocket_Err(); +#endif #ifdef HAVE_GAI_STRERROR v = Py_BuildValue("(is)", error, gai_strerror(error)); |