[master] 56f3152 Fix remove header for now gone refcount column

Poul-Henning Kamp phk at FreeBSD.org
Wed Feb 25 20:17:17 CET 2015


commit 56f315242b25d4542c682e7f8604530674521e18
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Wed Feb 25 19:13:12 2015 +0000

    Fix remove header for now gone refcount column

diff --git a/bin/varnishd/cache/cache_backend_cfg.c b/bin/varnishd/cache/cache_backend_cfg.c
index 7d81cf8..9a80a4b 100644
--- a/bin/varnishd/cache/cache_backend_cfg.c
+++ b/bin/varnishd/cache/cache_backend_cfg.c
@@ -264,8 +264,8 @@ do_list(struct cli *cli, struct backend *b, void *priv)
 	AN(priv);
 	hdr = priv;
 	if (!*hdr) {
-		VCLI_Out(cli, "%-30s %-6s %-10s %s",
-		    "Backend name", "Refs", "Admin", "Probe");
+		VCLI_Out(cli, "%-30s %-10s %s",
+		    "Backend name", "Admin", "Probe");
 		*hdr = 1;
 	}
 	CHECK_OBJ_NOTNULL(b, BACKEND_MAGIC);



More information about the varnish-commit mailing list