Hi, This patch fixes a typo in the code comments of the signal subsystem.
Thanks, Joseph
From 6fd7551282b94273c14d7d4a4cff5df662800fd5 Mon Sep 17 00:00:00 2001 From: Joseph Herlant <[email protected]> Date: Sun, 25 Nov 2018 11:19:40 -0800 Subject: [PATCH] CLEANUP: Fix a typo in the signal subsystem Fixes a typo in the code comments of the signal subsystem. --- src/signal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/signal.c b/src/signal.c index 93877284..6f0a0b3c 100644 --- a/src/signal.c +++ b/src/signal.c @@ -134,7 +134,7 @@ void haproxy_unblock_signals() sigset_t set; /* Ensure signals are not blocked. Some shells or service managers may - * accidently block all of our signals unfortunately, causing lots of + * accidentally block all of our signals unfortunately, causing lots of * zombie processes to remain in the background during reloads. */ sigemptyset(&set); -- 2.19.1

