From: Bill Stoddard Date: Mon, 3 Apr 2000 21:11:55 +0000 (+0000) Subject: Eliminate a warning related to the struct socket_t vs ap_socket_t change. X-Git-Tag: apache-doc-split-01~85 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1d5997a5a626ac53239d42fe1f0402f438753fc2;p=apache Eliminate a warning related to the struct socket_t vs ap_socket_t change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84899 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index c5e2c3bbea..5782b42948 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -107,7 +107,7 @@ int parent_pid; 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);