From: Miod Vallat Date: Fri, 12 Sep 2025 07:27:08 +0000 (+0200) Subject: Improve comment wording. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0d3ea1e32ae851d59324264047d03ac0ff605801;p=thirdparty%2Fpdns.git Improve comment wording. Signed-off-by: Miod Vallat --- diff --git a/pdns/pdnsutil.cc b/pdns/pdnsutil.cc index 7b7988515..7060cc185 100644 --- a/pdns/pdnsutil.cc +++ b/pdns/pdnsutil.cc @@ -1853,7 +1853,7 @@ static bool spawnEditor(const std::string& editor, std::string_view tmpfile, int sigset_t mask; sigset_t omask; - // Ignore INT, QUIT and CHLD signals while the editor process runs + // Block INT, QUIT and CHLD signals while the editor process runs sigemptyset(&mask); sigaddset(&mask, SIGCHLD); sigaddset(&mask, SIGINT);