You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mi...@apache.org on 2010/02/05 22:37:56 UTC

svn commit: r907105 - /httpd/httpd/trunk/modules/cluster/mod_heartmonitor.c

Author: minfrin
Date: Fri Feb  5 21:37:56 2010
New Revision: 907105

URL: http://svn.apache.org/viewvc?rev=907105&view=rev
Log:
Make the error message correspond to the code, which sets APR_SO_NONBLOCK.

Modified:
    httpd/httpd/trunk/modules/cluster/mod_heartmonitor.c

Modified: httpd/httpd/trunk/modules/cluster/mod_heartmonitor.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cluster/mod_heartmonitor.c?rev=907105&r1=907104&r2=907105&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cluster/mod_heartmonitor.c (original)
+++ httpd/httpd/trunk/modules/cluster/mod_heartmonitor.c Fri Feb  5 21:37:56 2010
@@ -97,7 +97,7 @@
     rv = apr_socket_opt_set(ctx->sock, APR_SO_NONBLOCK, 1);
     if (rv) {
         ap_log_error(APLOG_MARK, APLOG_CRIT, rv, ctx->s,
-                     "Heartmonitor: Failed to set APR_SO_REUSEADDR to 1 on socket.");
+                     "Heartmonitor: Failed to set APR_SO_NONBLOCK to 1 on socket.");
         return rv;
     }