From: Dr. David von Oheimb Date: Mon, 14 Apr 2025 18:08:54 +0000 (+0200) Subject: apps/cms.c: add missing error message on error writing CMS output (ret == 6) X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1beaf112e53c5b6ea2a7c7564adb1374d7253e7e;p=thirdparty%2Fopenssl.git apps/cms.c: add missing error message on error writing CMS output (ret == 6) Reviewed-by: Tomas Mraz Reviewed-by: Dmitry Belyavskiy (Merged from https://github.com/openssl/openssl/pull/27368) --- diff --git a/apps/cms.c b/apps/cms.c index 919d306ff68..6f19414880c 100644 --- a/apps/cms.c +++ b/apps/cms.c @@ -1280,6 +1280,7 @@ int cms_main(int argc, char **argv) goto end; } if (ret <= 0) { + BIO_printf(bio_err, "Error writing CMS output\n"); ret = 6; goto end; }