Fix typo in last patch -- the symbol's name is MSG_DONWAIT, not

MSG_DONTWAIT.  Reported by Fredrik Lundh.
This commit is contained in:
Guido van Rossum 2000-04-25 21:53:58 +00:00
parent 2c8bcb8794
commit 14f3f59d2b
1 changed files with 1 additions and 1 deletions

View File

@ -2527,7 +2527,7 @@ initsocket()
insint(d, "MSG_DONTROUTE", MSG_DONTROUTE); insint(d, "MSG_DONTROUTE", MSG_DONTROUTE);
#endif #endif
#ifdef MSG_DONTWAIT #ifdef MSG_DONTWAIT
insint(d, "MSG_DONWAIT", MSG_DONTWAIT); insint(d, "MSG_DONTWAIT", MSG_DONTWAIT);
#endif #endif
#ifdef MSG_EOR #ifdef MSG_EOR
insint(d, "MSG_EOR", MSG_EOR); insint(d, "MSG_EOR", MSG_EOR);