[Python-checkins] CVS: python/dist/src/Modules socketmodule.c,1.116,1.117
Peter Schneider-Kamp
python-dev@python.org
2000年7月11日 16:00:17 -0700
Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv32713
Modified Files:
socketmodule.c
Log Message:
Errare humanum est.
Changed parameter in getsockaddrlen from unsigned to socklen_t.
Index: socketmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/socketmodule.c,v
retrieving revision 1.116
retrieving revision 1.117
diff -C2 -r1.116 -r1.117
*** socketmodule.c 2000年07月11日 17:40:30 1.116
--- socketmodule.c 2000年07月11日 23:00:12 1.117
***************
*** 576,580 ****
static int
! getsockaddrlen(PySocketSockObject *s, unsigned int *len_ret)
{
switch (s->sock_family) {
--- 576,580 ----
static int
! getsockaddrlen(PySocketSockObject *s, socklen_t *len_ret)
{
switch (s->sock_family) {