From: Guido van Rossum Date: Tue, 25 Apr 2000 21:53:58 +0000 (+0000) Subject: Fix typo in last patch -- the symbol's name is MSG_DONWAIT, not X-Git-Tag: v2.0b1~1938 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=14f3f59d2b510d0210f10804cb5f85df8278af8e;p=python Fix typo in last patch -- the symbol's name is MSG_DONWAIT, not MSG_DONTWAIT. Reported by Fredrik Lundh. --- diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 6649eea41a..939a49504b 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);