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

Martin v. L?wis loewis@users.sourceforge.net
Sun, 24 Jun 2001 23:38:05 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv13856

Modified Files:
	socketmodule.c 
Log Message:
Remove const-ness in inet_pton declaration.


Index: socketmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/socketmodule.c,v
retrieving revision 1.148
retrieving revision 1.149
diff -C2 -r1.148 -r1.149
*** socketmodule.c	2001/06/24 21:35:43	1.148
--- socketmodule.c	2001/06/25 06:38:03	1.149
***************
*** 218,222 ****
  
  #ifndef HAVE_INET_PTON
! int inet_pton (int af, const char *src, void *dst);
  char *inet_ntop(int af, void *src, char *dst, socklen_t size);
  #endif
--- 218,222 ----
  
  #ifndef HAVE_INET_PTON
! int inet_pton (int af, char *src, void *dst);
  char *inet_ntop(int af, void *src, char *dst, socklen_t size);
  #endif