1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Revert r1715789: will re-commit without spurious functional changes.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1715869 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yann Ylavic
2015-11-23 16:28:36 +00:00
parent 15d829531e
commit 3c9ddf44bf
33 changed files with 290 additions and 242 deletions

View File

@@ -63,7 +63,7 @@ static int proxy_balancer_canon(request_rec *r, char *url)
apr_port_t port = 0;
/* TODO: offset of BALANCER_PREFIX ?? */
if (ap_casecmpstrn(url, "balancer:", 9) == 0) {
if (strncasecmp(url, "balancer:", 9) == 0) {
url += 9;
}
else {
@@ -1380,7 +1380,7 @@ static int balancer_handler(request_rec *r)
ap_rprintf(r, " <httpd:lbset>%d</httpd:lbset>\n",
worker->s->lbset);
/* End proxy_worker_stat */
if (!ap_casecmpstr(worker->s->scheme, "ajp")) {
if (!strcasecmp(worker->s->scheme, "ajp")) {
ap_rputs(" <httpd:flushpackets>", r);
switch (worker->s->flush_packets) {
case flush_off: