From ee9cb005b388b2abddf7421fbbb1b374cb3a57ad Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Mon, 17 Feb 2020 14:30:49 +0100 Subject: [PATCH] Do not write information about FIPS mode to stderr (#1778224) --- openssh-7.7p1-fips.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openssh-7.7p1-fips.patch b/openssh-7.7p1-fips.patch index 36af30a..36eec24 100644 --- a/openssh-7.7p1-fips.patch +++ b/openssh-7.7p1-fips.patch @@ -340,7 +340,7 @@ diff -up openssh-8.0p1/ssh.c.fips openssh-8.0p1/ssh.c seed_rng(); + if (FIPS_mode()) { -+ logit("FIPS mode initialized"); ++ debug("FIPS mode initialized"); + } + /* @@ -489,7 +489,7 @@ diff -up openssh-8.0p1/sshd.c.fips openssh-8.0p1/sshd.c log_init(__progname, options.log_level, options.log_facility, log_stderr); + if (FIPS_mode()) { -+ logit("FIPS mode initialized"); ++ debug("FIPS mode initialized"); + } + /* Chdir to the root directory so that the current disk can be