From aa0a45d2edda92a1239d213bf306338ad912d9ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyril=20Bont=C3=A9?= Date: Wed, 4 Apr 2012 12:57:20 +0200 Subject: [PATCH] MINOR: stats admin: use the backend id instead of its name in the form Proxy ids are unique whereas names can be used several times in the configuration. In order to prevent the ambiguity, the HTML form now provides the backend id instead of its name (the name can still be provided in the POST data). --- src/dumpstats.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dumpstats.c b/src/dumpstats.c index 16d07ddb2..3f88fc507 100644 --- a/src/dumpstats.c +++ b/src/dumpstats.c @@ -3160,10 +3160,10 @@ static int stats_dump_proxy(struct stream_interface *si, struct proxy *px, struc "" "" "" - "" + "" " " "", - px->id); + px->uuid); } chunk_printf(&msg, "

\n");