From f7a5b4fa74192338012b5174748e2ce4d796d46d Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Thu, 30 May 2019 21:24:08 +0100 Subject: Ignore SIGUSR1 and SIGUSR2 by default. This stops users from accidentally killing their IRC server if they forget to load the sslrehashsignal module. --- src/modules/extra/m_sslrehashsignal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules') diff --git a/src/modules/extra/m_sslrehashsignal.cpp b/src/modules/extra/m_sslrehashsignal.cpp index fea32326a..e8be17e23 100644 --- a/src/modules/extra/m_sslrehashsignal.cpp +++ b/src/modules/extra/m_sslrehashsignal.cpp @@ -33,7 +33,7 @@ class ModuleSSLRehashSignal : public Module public: ~ModuleSSLRehashSignal() { - signal(SIGUSR1, SIG_DFL); + signal(SIGUSR1, SIG_IGN); } void init() -- cgit v1.2.3