stoddard 00/04/03 14:11:57 Modified: src/modules/mpm/winnt winnt.c Log: Eliminate a warning related to the struct socket_t vs ap_socket_t change. Revision Changes Path 1.47 +1 -1 apache-2.0/src/modules/mpm/winnt/winnt.c Index: winnt.c =================================================================== RCS file: /home/cvs/apache-2.0/src/modules/mpm/winnt/winnt.c,v retrieving revision 1.46 retrieving revision 1.47 diff -u -r1.46 -r1.47 --- winnt.c 2000/03/31 09:05:12 1.46 +++ winnt.c 2000/04/03 21:11:55 1.47 @@ -107,7 +107,7 @@ static ap_status_t socket_cleanup(void *sock) { - struct socket_t *thesocket = sock; + ap_socket_t *thesocket = sock; SOCKET sd; if (ap_get_os_sock(&sd, thesocket) == APR_SUCCESS) { closesocket(sd);