From: Darren Tucker Date: Sun, 18 Oct 2020 23:54:41 +0000 (+1100) Subject: Use fatal_fr not fatal_r when passing r. X-Git-Tag: V_8_5_P1~226 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7715a3b171049afa1feffb1d5a1245dfac36ce99;p=thirdparty%2Fopenssh-portable.git Use fatal_fr not fatal_r when passing r. Caught by the PAM -Werror tinderbox build. --- diff --git a/monitor_wrap.c b/monitor_wrap.c index 8cfd4b413..5f40cc82e 100644 --- a/monitor_wrap.c +++ b/monitor_wrap.c @@ -415,7 +415,7 @@ mm_auth_password(struct ssh *ssh, char *password) if ((r = sshbuf_get_u32(m, &maxtries)) != 0) fatal_fr(r, "parse PAM"); if (maxtries > INT_MAX) - fatal_f(r, "bad maxtries"); + fatal_fr(r, "bad maxtries"); sshpam_set_maxtries_reached(maxtries); #endif