From: Bill Stoddard Date: Tue, 3 Apr 2001 00:44:47 +0000 (+0000) Subject: Add a note to check the FAQ. A very common problem caused by VPNs X-Git-Tag: 2.0.16~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8e14e4d3b03cb68c6b844c1e24040dbfccc38d0;p=thirdparty%2Fapache%2Fhttpd.git Add a note to check the FAQ. A very common problem caused by VPNs like Aventail Connect is flagged by this code and is documented in the FAQ. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88672 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index b3d72d25baf..7598ef84d78 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -1331,7 +1331,7 @@ static int create_process(apr_pool_t *p, HANDLE *handles, HANDLE *events, int *p if (WSADuplicateSocket(nsd, pi.dwProcessId, lpWSAProtocolInfo) == SOCKET_ERROR) { ap_log_error(APLOG_MARK, APLOG_CRIT, apr_get_netos_error(), server_conf, - "Parent: WSADuplicateSocket failed for socket %d.", lr->sd ); + "Parent: WSADuplicateSocket failed for socket %d. Check the FAQ.", lr->sd ); return -1; }