From: Willy Tarreau Date: Sun, 9 Aug 2015 09:01:51 +0000 (+0200) Subject: MINOR: init: indicate to check 'bind' lines when no listeners were found. X-Git-Tag: v1.6-dev4~96 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f2ee0162c3a898addd2b1f375c0e7106085461c1;p=thirdparty%2Fhaproxy.git MINOR: init: indicate to check 'bind' lines when no listeners were found. It used to still mention ''. --- diff --git a/src/haproxy.c b/src/haproxy.c index b730ab14ac..4b4fdee70b 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);