From: Graham Leggett Date: Fri, 5 Feb 2010 21:37:56 +0000 (+0000) Subject: Make the error message correspond to the code, which sets APR_SO_NONBLOCK. X-Git-Tag: 2.3.6~507 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad308e2343f0128018116d9fe9f9a1a8caadb217;p=apache Make the error message correspond to the code, which sets APR_SO_NONBLOCK. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@907105 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cluster/mod_heartmonitor.c b/modules/cluster/mod_heartmonitor.c index 1e4a92341f..6a50dd5dc5 100644 --- a/modules/cluster/mod_heartmonitor.c +++ b/modules/cluster/mod_heartmonitor.c @@ -97,7 +97,7 @@ static apr_status_t hm_listen(hm_ctx_t *ctx) 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; }