From 7c7b991a40a958fe6efc4ef6e34f352b2d387ee1 Mon Sep 17 00:00:00 2001 From: don Date: Mon, 22 Mar 2010 21:43:03 +0000 Subject: [PATCH] * fix SIGCHLD typo --- spamass-milter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spamass-milter.cpp b/spamass-milter.cpp index b889871..be42240 100644 --- a/spamass-milter.cpp +++ b/spamass-milter.cpp @@ -350,7 +350,7 @@ main(int argc, char* argv[]) /* Set up sigaction to avoid having to reap children */ memset(&children_sigaction, 0, sizeof children_sigaction); children_sigaction.sa_flags = SA_NOCLDWAIT; - sigaction(SIG_CHLD,&children_sigaction,0); + sigaction(SIGCHLD,&children_sigaction,0); (void) smfi_setconn(sock); -- 2.39.2