[Python-checkins] CVS: python/dist/src/Modules socketmodule.c,1.105,1.106

Guido van Rossum python-dev@python.org
Tue, 25 Apr 2000 17:54:02 -0400 (EDT)


Update of /projects/cvsroot/python/dist/src/Modules
In directory eric:/projects/python/develop/guido/src/Modules

Modified Files:
	socketmodule.c 
Log Message:
Fix typo in last patch -- the symbol's name is MSG_DONWAIT, not
MSG_DONTWAIT.  Reported by Fredrik Lundh.



Index: socketmodule.c
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Modules/socketmodule.c,v
retrieving revision 1.105
retrieving revision 1.106
diff -C2 -r1.105 -r1.106
*** socketmodule.c	2000/04/25 21:34:53	1.105
--- socketmodule.c	2000/04/25 21:53:58	1.106
***************
*** 2528,2532 ****
  #endif
  #ifdef	MSG_DONTWAIT
! 	insint(d, "MSG_DONWAIT", MSG_DONTWAIT);
  #endif
  #ifdef	MSG_EOR
--- 2528,2532 ----
  #endif
  #ifdef	MSG_DONTWAIT
! 	insint(d, "MSG_DONTWAIT", MSG_DONTWAIT);
  #endif
  #ifdef	MSG_EOR