From: Wayne Davison Date: Fri, 3 Feb 2006 18:34:09 +0000 (+0000) Subject: A slight tweak to the conditionalized definition of SIGACTION(). X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/5173f99e68733099732c2da198f5356b446c77eb A slight tweak to the conditionalized definition of SIGACTION(). --- diff --git a/rsync.h b/rsync.h index a61315e2..396a1c8f 100644 --- a/rsync.h +++ b/rsync.h @@ -700,7 +700,7 @@ extern int errno; #define SUPPORT_HARD_LINKS 1 #endif -#if defined HAVE_SIGACTION && defined HAVE_SIGPROCMASK +#ifdef HAVE_SIGACTION #define SIGACTION(n,h) sigact.sa_handler=(h), sigaction((n),&sigact,NULL) #define signal(n,h) we_need_to_call_SIGACTION_not_signal(n,h) #else