]> granicus.if.org Git - python/commitdiff
Fix typo in last patch -- the symbol's name is MSG_DONWAIT, not
authorGuido van Rossum <guido@python.org>
Tue, 25 Apr 2000 21:53:58 +0000 (21:53 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 25 Apr 2000 21:53:58 +0000 (21:53 +0000)
MSG_DONTWAIT.  Reported by Fredrik Lundh.

Modules/socketmodule.c

index 6649eea41ad6b6ed4e5c3afad447a78492480962..939a49504b0812e339348552824ff371deb84830 100644 (file)
@@ -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);