Hi, This patch fixes a typo in a code comment of the stats subsystem.
Thanks, Joseph
From edd5dfe33185086fcba39be781dd957c86882d36 Mon Sep 17 00:00:00 2001 From: Joseph Herlant <[email protected]> Date: Thu, 15 Nov 2018 13:39:46 -0800 Subject: [PATCH] CLEANUP: Fix a typo in the stats subsystem Fix a typo in a code comment of the stats subsystem. --- src/stats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stats.c b/src/stats.c index 07a5ef74..be72ab39 100644 --- a/src/stats.c +++ b/src/stats.c @@ -3046,7 +3046,7 @@ static void http_stats_io_handler(struct appctx *appctx) if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) goto out; - /* Check if the input buffer is avalaible. */ + /* Check if the input buffer is available. */ if (res->buf.size == 0) { si_cant_put(si); goto out; -- 2.19.1

