]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
feature: openssl req -verify output to stderr instead of stdout #20728
authorRajarshi Karmakar <rkarmaka98@gmail.com>
Sat, 29 Apr 2023 07:27:57 +0000 (07:27 +0000)
committerPauli <pauli@openssl.org>
Thu, 4 May 2023 01:58:36 +0000 (11:58 +1000)
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20858)

apps/req.c

index 649ba99f0b0b66a295a3ab4cecf1030478ef5935..f24101cefae372502a49301e605c3770d3882a4a 100644 (file)
@@ -937,7 +937,7 @@ int req_main(int argc, char **argv)
         if (i == 0)
             BIO_printf(bio_err, "Certificate request self-signature verify failure\n");
         else /* i > 0 */
-            BIO_printf(bio_err, "Certificate request self-signature verify OK\n");
+            BIO_printf(bio_out, "Certificate request self-signature verify OK\n");
     }
 
     if (noout && !text && !modulus && !subject && !pubkey) {