]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: Fix an error message thrown when we run out of memory
authorJoseph Herlant <aerostitch@debian.org>
Thu, 15 Nov 2018 18:43:05 +0000 (10:43 -0800)
committerWilly Tarreau <w@1wt.eu>
Sun, 18 Nov 2018 21:23:15 +0000 (22:23 +0100)
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

index b240bb3ba07f546c4ca84687ee076ddb9d076bc4..93d6aa373818f893c547ac01efc777809df4efa0 100644 (file)
@@ -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;
 }