From 2a877034af698231b77c1975bad05d058e855fe7 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Thu, 18 Oct 2007 18:10:47 +0200 Subject: [PATCH] [BUG] scope "." must match the backend and not the frontend --- src/proto_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto_http.c b/src/proto_http.c index 8a1083f89..f94b01c16 100644 --- a/src/proto_http.c +++ b/src/proto_http.c @@ -3750,7 +3750,7 @@ int produce_content_stats_proxy(struct session *s, struct proxy *px) 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; } -- 2.47.3