summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorPauli <ppzgs1@gmail.com>2021-02-26 10:08:23 +1000
committerPauli <ppzgs1@gmail.com>2021-02-28 17:25:49 +1000
commitbb0ab821f38427576e4f25bb66818bc297ee8b22 (patch)
tree044a795dea863e68c172de099867f3ed2c231b52 /apps
parent3469b388164775546022635d6695cae17104faa6 (diff)
apps: add addition argument to KDF derive call
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/14310)
Diffstat (limited to 'apps')
-rw-r--r--apps/kdf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/kdf.c b/apps/kdf.c
index 4bbb88a5ae..5c33234b57 100644
--- a/apps/kdf.c
+++ b/apps/kdf.c
@@ -135,7 +135,7 @@ opthelp:
if (dkm_bytes == NULL)
goto err;
- if (!EVP_KDF_derive(ctx, dkm_bytes, dkm_len)) {
+ if (!EVP_KDF_derive(ctx, dkm_bytes, dkm_len, NULL)) {
BIO_printf(bio_err, "EVP_KDF_derive failed\n");
goto err;
}