[Python-3000-checkins] r59251 - python/branches/py3k/Modules/socketmodule.h

christian.heimes python-3000-checkins at python.org
Sat Dec 1 00:34:21 CET 2007


Author: christian.heimes
Date: Sat Dec  1 00:34:21 2007
New Revision: 59251

Modified:
   python/branches/py3k/Modules/socketmodule.h
Log:
Marc-Andre Lemburg has found the culprit of the problem in r57142.

Modified: python/branches/py3k/Modules/socketmodule.h
==============================================================================
--- python/branches/py3k/Modules/socketmodule.h	(original)
+++ python/branches/py3k/Modules/socketmodule.h	Sat Dec  1 00:34:21 2007
@@ -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
 


More information about the Python-3000-checkins mailing list