mirror of https://github.com/python/cpython
Fix typo in last patch -- the symbol's name is MSG_DONWAIT, not
MSG_DONTWAIT. Reported by Fredrik Lundh.
This commit is contained in:
parent
2c8bcb8794
commit
14f3f59d2b
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue