diff options
author | Christian Heimes <christian@cheimes.de> | 2007-11-30 23:34:21 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-11-30 23:34:21 (GMT) |
commit | b5daaed30d7c54ba1f516289f3a7a30a864133af (patch) | |
tree | 48b5e917fe2d8b1fb96354132eb865355ca48ef7 /Modules/socketmodule.h | |
parent | f77c929c561ce15c6b6326ff237e4f947076d180 (diff) | |
download | cpython-b5daaed30d7c54ba1f516289f3a7a30a864133af.zip cpython-b5daaed30d7c54ba1f516289f3a7a30a864133af.tar.gz cpython-b5daaed30d7c54ba1f516289f3a7a30a864133af.tar.bz2 |
Marc-Andre Lemburg has found the culprit of the problem in r57142.
Diffstat (limited to 'Modules/socketmodule.h')
-rw-r--r-- | Modules/socketmodule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/socketmodule.h b/Modules/socketmodule.h index 9c9b694..b41a040 100644 --- a/Modules/socketmodule.h +++ b/Modules/socketmodule.h @@ -8,7 +8,7 @@ # include <sys/socket.h> # endif # include <netinet/in.h> -# if defined(__CYGWIN__) || (defined(PYOS_OS2) && defined(PYCC_VACPP)) +# if !(defined(__CYGWIN__) || (defined(PYOS_OS2) && defined(PYCC_VACPP))) # include <netinet/tcp.h> # endif |