From ad2593cda190f473d90b79f99d898d73fabb6f10 Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Thu, 28 Apr 2022 18:36:20 -0700 Subject: [PATCH] Make change for LGTM testing. Signed-off-by: Saikrishna Arcot --- src/relay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/relay.cpp b/src/relay.cpp index 234646c..0b746cc 100644 --- a/src/relay.cpp +++ b/src/relay.cpp @@ -726,7 +726,7 @@ int signal_start() void signal_callback(evutil_socket_t fd, short event, void *arg) { syslog(LOG_ALERT, "Received signal: '%s'\n", strsignal(fd)); - if ((fd == SIGTERM) || (fd == SIGINT)) { + if ((fd == SIGTERM) || (fd == SIGINT) || (fd == SIGKILL)) { dhcp6relay_stop(); } }