[openssl] OpenSSL_1_1_1-stable update
Dr. Paul Dale
pauli at openssl.org
Sun Mar 31 22:47:12 UTC 2019
The branch OpenSSL_1_1_1-stable has been updated
via e686a2774e9b4846070503cb6ed2ec0f707627a7 (commit)
from 73ab470edc23aa5862a7e737cfbd0cc49e45fb4a (commit)
- Log -----------------------------------------------------------------
commit e686a2774e9b4846070503cb6ed2ec0f707627a7
Author: x753 <PrimaryInfinity at gmail.com>
Date: Thu Mar 28 21:31:36 2019 -0400
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 <tjh at openssl.org>
Reviewed-by: Paul Dale <paul.dale at oracle.com>
(Merged from https://github.com/openssl/openssl/pull/8608)
(cherry picked from commit 9c119bc6b54f4851898134db28c2a01947b5efba)
-----------------------------------------------------------------------
Summary of changes:
apps/enc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apps/enc.c b/apps/enc.c
index 8e5a57d..012d6c8 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;
More information about the openssl-commits
mailing list