Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 14f3f59

Browse files
committed
Fix typo in last patch -- the symbol's name is MSG_DONWAIT, not
MSG_DONTWAIT. Reported by Fredrik Lundh.
1 parent 2c8bcb8 commit 14f3f59

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/socketmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2527,7 +2527,7 @@ initsocket()
25272527
insint(d, "MSG_DONTROUTE", MSG_DONTROUTE);
25282528
#endif
25292529
#ifdef MSG_DONTWAIT
2530-
insint(d, "MSG_DONWAIT", MSG_DONTWAIT);
2530+
insint(d, "MSG_DONTWAIT", MSG_DONTWAIT);
25312531
#endif
25322532
#ifdef MSG_EOR
25332533
insint(d, "MSG_EOR", MSG_EOR);

0 commit comments

Comments
 (0)