From: Willy Tarreau Date: Thu, 18 Oct 2007 14:38:37 +0000 (+0200) Subject: [BUG] scope "." must match the backend and not the frontend X-Git-Tag: v1.3.13~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1388a3a8e86edcc87bfef33044e05a073b65d2a3;p=thirdparty%2Fhaproxy.git [BUG] scope "." must match the backend and not the frontend --- diff --git a/src/dumpstats.c b/src/dumpstats.c index bba8c2ce76..701227d8bb 100644 --- a/src/dumpstats.c +++ b/src/dumpstats.c @@ -563,7 +563,7 @@ int stats_dump_proxy(struct session *s, struct proxy *px, struct uri_auth *uri, break; /* match '.' which means 'self' proxy */ - if (!strcmp(scope->px_id, ".") && px == s->fe) + if (!strcmp(scope->px_id, ".") && px == s->be) break; scope = scope->next; }