summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-04-25 21:53:58 (GMT)
committerGuido van Rossum <guido@python.org>2000-04-25 21:53:58 (GMT)
commit14f3f59d2b510d0210f10804cb5f85df8278af8e (patch)
treeb039ecfd3ecb21844cb0fe908dc34ddb7bd6377e
parent2c8bcb8794478d7d10b494f915eadc759f58f549 (diff)
downloadcpython-14f3f59d2b510d0210f10804cb5f85df8278af8e.zip
cpython-14f3f59d2b510d0210f10804cb5f85df8278af8e.tar.gz
cpython-14f3f59d2b510d0210f10804cb5f85df8278af8e.tar.bz2
Fix typo in last patch -- the symbol's name is MSG_DONWAIT, not
MSG_DONTWAIT. Reported by Fredrik Lundh.
-rw-r--r--Modules/socketmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index 6649eea..939a495 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -2527,7 +2527,7 @@ initsocket()
insint(d, "MSG_DONTROUTE", MSG_DONTROUTE);
#endif
#ifdef MSG_DONTWAIT
- insint(d, "MSG_DONWAIT", MSG_DONTWAIT);
+ insint(d, "MSG_DONTWAIT", MSG_DONTWAIT);
#endif
#ifdef MSG_EOR
insint(d, "MSG_EOR", MSG_EOR);