From 56db6319d4b1c6a5a0bd3b476f3cc46ec5a5ea38 Mon Sep 17 00:00:00 2001
From: Dirkjan Bussink <d.bussink@gmail.com>
Date: Fri, 14 Sep 2018 14:29:16 +0200
Subject: [PATCH 1/3] Remove unused variable

Looking at the code, this variable is no longer used and referenced
nowhere. That means it can be safely removed.
---
 src/haproxy.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/haproxy.c b/src/haproxy.c
index 3bf1f3bc..cfea31fb 100644
--- a/src/haproxy.c
+++ b/src/haproxy.c
@@ -203,7 +203,6 @@ int shut_your_big_mouth_gcc_int = 0;
 
 int *children = NULL; /* store PIDs of children in master workers mode */
 
-static volatile sig_atomic_t caught_signal = 0;
 static char **next_argv = NULL;
 
 struct list proc_list = LIST_HEAD_INIT(proc_list);
-- 
2.19.0

