From 1388a3a8e86edcc87bfef33044e05a073b65d2a3 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Thu, 18 Oct 2007 16:38:37 +0200 Subject: [PATCH] [BUG] scope "." must match the backend and not the frontend --- src/dumpstats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dumpstats.c b/src/dumpstats.c index bba8c2ce7..701227d8b 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; }