From: Joseph Herlant Date: Thu, 15 Nov 2018 18:43:05 +0000 (-0800) Subject: MINOR: Fix an error message thrown when we run out of memory X-Git-Tag: v1.9-dev7~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=07a0834635c8ed063db7ef6bd6cdb0b96f567942;p=thirdparty%2Fhaproxy.git 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. --- diff --git a/src/haproxy.c b/src/haproxy.c index b240bb3ba0..93d6aa3738 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; }