Commit 1e7280ff authored by Bill Stoddard's avatar Bill Stoddard
Browse files

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
parent bc92b999
Loading
Loading
Loading
Loading
+1 −1
Changes for server/mpm/winnt/mpm_winnt.c: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -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);