diff options
author | x753 <PrimaryInfinity@gmail.com> | 2019-03-29 02:31:36 +0100 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2019-04-01 00:45:06 +0200 |
commit | 9c119bc6b54f4851898134db28c2a01947b5efba (patch) | |
tree | bebbf39d7f2ab5d34b3d4a60b5c0023cdf46bb2f /apps/enc.c | |
parent | fixed public range check in ec_GF2m_simple_oct2point (diff) | |
download | openssl-9c119bc6b54f4851898134db28c2a01947b5efba.tar.xz openssl-9c119bc6b54f4851898134db28c2a01947b5efba.zip |
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@openssl.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/8608)
Diffstat (limited to 'apps/enc.c')
-rw-r--r-- | apps/enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |