From 9c119bc6b54f4851898134db28c2a01947b5efba Mon Sep 17 00:00:00 2001 From: x753 Date: Thu, 28 Mar 2019 21:31:36 -0400 Subject: [PATCH 1/1] Fixed typo in enc.c warning "warning: iv not use by this cipher" -> "warning: iv not used by this cipher" CLA: trivial Reviewed-by: Tim Hudson Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/8608) --- apps/enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/enc.c b/apps/enc.c index fbc3664da8..57ce924337 100644 --- a/apps/enc.c +++ b/apps/enc.c @@ -500,7 +500,7 @@ int enc_main(int argc, char **argv) if (hiv != NULL) { int siz = EVP_CIPHER_iv_length(cipher); if (siz == 0) { - BIO_printf(bio_err, "warning: iv not use by this cipher\n"); + BIO_printf(bio_err, "warning: iv not used by this cipher\n"); } else if (!set_hex(hiv, iv, siz)) { BIO_printf(bio_err, "invalid hex iv value\n"); goto end; -- 2.34.1