From b53e20826e8e12a74a73634e7986a06e3c712deb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Nephtali?= Date: Sun, 11 Mar 2018 16:55:02 +0100 Subject: [PATCH] BUG/MINOR: cli: Fix a typo in the 'set rate-limit' usage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The correct keyword is 'ssl-sessions' (vs. 'ssl-session'). The typo was introduced in 45c742be05 ('REORG: cli: move the "set rate-limit" functions to their own parser'). Signed-off-by: Aurélien Nephtali --- src/cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.c b/src/cli.c index 5a6da3fa1..84b6229b7 100644 --- a/src/cli.c +++ b/src/cli.c @@ -1184,7 +1184,7 @@ static int cli_parse_set_ratelimit(char **args, struct appctx *appctx, void *pri " - 'connections global' to set the per-process maximum connection rate\n" " - 'sessions global' to set the per-process maximum session rate\n" #ifdef USE_OPENSSL - " - 'ssl-session global' to set the per-process maximum SSL session rate\n" + " - 'ssl-sessions global' to set the per-process maximum SSL session rate\n" #endif " - 'http-compression global' to set the per-process maximum compression speed in kB/s\n"; appctx->st0 = CLI_ST_PRINT;