From f2ee0162c3a898addd2b1f375c0e7106085461c1 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Sun, 9 Aug 2015 11:01:51 +0200 Subject: [PATCH] MINOR: init: indicate to check 'bind' lines when no listeners were found. It used to still mention ''. --- src/haproxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/haproxy.c b/src/haproxy.c index b730ab14a..4b4fdee70 100644 --- a/src/haproxy.c +++ b/src/haproxy.c @@ -1666,7 +1666,7 @@ int main(int argc, char **argv) } if (listeners == 0) { - Alert("[%s.main()] No enabled listener found (check the keywords) ! Exiting.\n", argv[0]); + Alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]); /* Note: we don't have to send anything to the old pids because we * never stopped them. */ exit(1);