summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorBill Stoddard <stoddard@apache.org>2001-04-03 02:44:47 +0200
committerBill Stoddard <stoddard@apache.org>2001-04-03 02:44:47 +0200
commitb8e14e4d3b03cb68c6b844c1e24040dbfccc38d0 (patch)
tree72e3bbcc16053a72b2ddc29c0a11cd473954dd5f /server
parentGrab the context lock when draining the qhead (diff)
downloadapache2-b8e14e4d3b03cb68c6b844c1e24040dbfccc38d0.tar.xz
apache2-b8e14e4d3b03cb68c6b844c1e24040dbfccc38d0.zip
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
Diffstat (limited to 'server')
-rw-r--r--server/mpm/winnt/mpm_winnt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c
index b3d72d25ba..7598ef84d7 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;
}