From f5bbafe051024a608fd81afa6dfa62485c988c9a Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Mon, 12 Oct 2009 07:19:35 +0200 Subject: [PATCH] [MINOR] config: report all supported options for the "bind" keyword "mss", "name" and "id" were missing. --- src/cfgparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cfgparse.c b/src/cfgparse.c index 428d7b93a..ace99313b 100644 --- a/src/cfgparse.c +++ b/src/cfgparse.c @@ -1212,7 +1212,7 @@ int cfg_parse_listen(const char *file, int linenum, char **args, int kwm) continue; } - Alert("parsing [%s:%d] : '%s' only supports the 'transparent' and 'interface' options.\n", + Alert("parsing [%s:%d] : '%s' only supports the 'transparent', 'name', 'id', 'mss' and 'interface' options.\n", file, linenum, args[0]); err_code |= ERR_ALERT | ERR_FATAL; goto out;