summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorPaul Yang <paulyang.inf@gmail.com>2017-05-22 23:18:45 +0800
committerMatt Caswell <matt@openssl.org>2017-05-23 09:31:59 +0100
commite242656cb1184a713911dd53206799bda02fe15b (patch)
treebecfe588dcd731fb3784058523df46630e2318cd /doc
parent51ab051ba62a1ceabb2724d69b2d4c954c697f89 (diff)
Fix typo in doc/man3/EVP_EncrypInit.pod
In the example section. CLA: trivial Signed-off-by: Paul Yang <paulyang.inf@gmail.com> Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3520) (cherry picked from commit 719b289d62d32fe45226e8bc5b4fb0d76f6a1b5d)
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/EVP_EncryptInit.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/crypto/EVP_EncryptInit.pod b/doc/crypto/EVP_EncryptInit.pod
index 813f7dc9af..b0832eb9b6 100644
--- a/doc/crypto/EVP_EncryptInit.pod
+++ b/doc/crypto/EVP_EncryptInit.pod
@@ -549,7 +549,7 @@ Encrypt a string using IDEA:
unsigned char key[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
unsigned char iv[] = {1,2,3,4,5,6,7,8};
char intext[] = "Some Crypto Text";
- EVP_CIPHER_CTX ctx;
+ EVP_CIPHER_CTX *ctx;
FILE *out;
ctx = EVP_CIPHER_CTX_new();