From ad308e2343f0128018116d9fe9f9a1a8caadb217 Mon Sep 17 00:00:00 2001 From: Graham Leggett Date: Fri, 5 Feb 2010 21:37:56 +0000 Subject: [PATCH] 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 --- modules/cluster/mod_heartmonitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.40.0