summaryrefslogtreecommitdiff
path: root/modules/cluster
diff options
context:
space:
mode:
authorGraham Leggett <minfrin@apache.org>2010-02-05 21:37:56 +0000
committerGraham Leggett <minfrin@apache.org>2010-02-05 21:37:56 +0000
commitad308e2343f0128018116d9fe9f9a1a8caadb217 (patch)
tree7ce1122dcca15cb33a0afa5dc7a6af904bb1fc80 /modules/cluster
parentbb616ddda3c8e1ec73d906f046d207eac1f7c261 (diff)
downloadhttpd-ad308e2343f0128018116d9fe9f9a1a8caadb217.tar.gz
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
Diffstat (limited to 'modules/cluster')
-rw-r--r--modules/cluster/mod_heartmonitor.c2
1 files changed, 1 insertions, 1 deletions
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;
}