summaryrefslogtreecommitdiff
path: root/modules/cluster
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2011-06-22 20:45:34 +0000
committerStefan Fritsch <sf@apache.org>2011-06-22 20:45:34 +0000
commit51692222f63283f2a25be0988a976c0516b07d38 (patch)
tree4993c6933929622ca70e6b38e084971ddc9af618 /modules/cluster
parent255f723fefb9963a690c2ea32eab8afdb4362fe6 (diff)
downloadhttpd-51692222f63283f2a25be0988a976c0516b07d38.tar.gz
Various code cleanup
PR: 51398 Submitted by: Christophe Jaillet <christophe jaillet wanadoo fr> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1138627 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 822a2cd33f..f2240c66f2 100644
--- a/modules/cluster/mod_heartmonitor.c
+++ b/modules/cluster/mod_heartmonitor.c
@@ -770,7 +770,7 @@ static int hm_handler(request_rec *r)
ap_set_content_type(r, "text/plain");
ap_set_content_length(r, 2);
- ap_rprintf(r, "OK");
+ ap_rputs("OK", r);
ap_rflush(r);
return OK;