diff options
author | Graham Leggett <minfrin@apache.org> | 2010-10-20 00:40:15 +0200 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2010-10-20 00:40:15 +0200 |
commit | 8df5fda30a6853f75a23c9eb9aa35ae6eaa81c45 (patch) | |
tree | 691ee4e67f7e9d596b6228448d764589a3b4522d /modules/cluster | |
parent | Avoid unnecessariy initialisation before we test handler name. (diff) | |
download | apache2-8df5fda30a6853f75a23c9eb9aa35ae6eaa81c45.tar.xz apache2-8df5fda30a6853f75a23c9eb9aa35ae6eaa81c45.zip |
Fix spelling of the handler.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1024445 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/cluster')
-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 706a7d19ce..07bada1431 100644 --- a/modules/cluster/mod_heartmonitor.c +++ b/modules/cluster/mod_heartmonitor.c @@ -739,7 +739,7 @@ static int hm_handler(request_rec *r) char *ip; hm_ctx_t *ctx; - if (strcmp(r->handler, "hearthbeat")) { + if (strcmp(r->handler, "heartbeat")) { return DECLINED; } if (r->method_number != M_POST) { |