diff options
author | Graham Leggett <minfrin@apache.org> | 2010-02-05 22:37:56 +0100 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2010-02-05 22:37:56 +0100 |
commit | ad308e2343f0128018116d9fe9f9a1a8caadb217 (patch) | |
tree | 7ce1122dcca15cb33a0afa5dc7a6af904bb1fc80 /modules/cluster/mod_heartmonitor.c | |
parent | Print directive name in error message. (diff) | |
download | apache2-ad308e2343f0128018116d9fe9f9a1a8caadb217.tar.xz apache2-ad308e2343f0128018116d9fe9f9a1a8caadb217.zip |
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 '')
-rw-r--r-- | modules/cluster/mod_heartmonitor.c | 2 |
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; } |