From: Damien Miller Date: Tue, 2 Oct 2018 12:49:40 +0000 (+1000) Subject: only support SIGINFO on systems with SIGINFO X-Git-Tag: V_7_9_P1~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff3a411cae0b484274b7900ef52ff4dad3e12876;p=thirdparty%2Fopenssh-portable.git only support SIGINFO on systems with SIGINFO --- diff --git a/session.c b/session.c index 63adc68c5..c5ca0556e 100644 --- a/session.c +++ b/session.c @@ -2120,8 +2120,10 @@ name2sig(char *name) SSH_SIG(USR1); SSH_SIG(USR2); #undef SSH_SIG +#ifdef SIGINFO if (strcmp(name, "INFO@openssh.com") == 0) return SIGINFO; +#endif return -1; }