From 07a0834635c8ed063db7ef6bd6cdb0b96f567942 Mon Sep 17 00:00:00 2001 From: Joseph Herlant Date: Thu, 15 Nov 2018 10:43:05 -0800 Subject: [PATCH] MINOR: Fix an error message thrown when we run out of memory Fixes a typo in an error message that can be seen by the end user when the haproxy subsystem runs out of memory. --- src/haproxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/haproxy.c b/src/haproxy.c index b240bb3ba..93d6aa373 100644 --- a/src/haproxy.c +++ b/src/haproxy.c @@ -765,7 +765,7 @@ static void mworker_reload() return; alloc_error: - ha_warning("Failed to reexecute the master processs [%d]: Cannot allocate memory\n", pid); + ha_warning("Failed to reexecute the master process [%d]: Cannot allocate memory\n", pid); return; }