diff options
author | tb <> | 2022-05-05 08:07:24 +0000 |
---|---|---|
committer | tb <> | 2022-05-05 08:07:24 +0000 |
commit | 37c1991ceacf34bfd692799be9a693b0eecec971 (patch) | |
tree | b0f4f0e31cfb9dd5ea7e54a9bc1e664570bcc24f /src/lib | |
parent | 9686a747de8432bf02f35760df72f966ab0e6df6 (diff) | |
download | openbsd-37c1991ceacf34bfd692799be9a693b0eecec971.tar.gz openbsd-37c1991ceacf34bfd692799be9a693b0eecec971.tar.bz2 openbsd-37c1991ceacf34bfd692799be9a693b0eecec971.zip |
Fix typo in previous.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/kdf/hkdf_evp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/kdf/hkdf_evp.c b/src/lib/libcrypto/kdf/hkdf_evp.c index d67c5f41b8..2501ba9cfa 100644 --- a/src/lib/libcrypto/kdf/hkdf_evp.c +++ b/src/lib/libcrypto/kdf/hkdf_evp.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: hkdf_evp.c,v 1.11 2022/05/05 08:05:58 tb Exp $ */ | 1 | /* $OpenBSD: hkdf_evp.c,v 1.12 2022/05/05 08:07:24 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2016-2018 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2016-2018 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -127,7 +127,7 @@ pkey_hkdf_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) | |||
127 | kctx->salt = malloc(p1); | 127 | kctx->salt = malloc(p1); |
128 | if (kctx->salt == NULL) | 128 | if (kctx->salt == NULL) |
129 | return 0; | 129 | return 0; |
130 | memcpy(ktx->salt, p2, p1); | 130 | memcpy(kctx->salt, p2, p1); |
131 | 131 | ||
132 | kctx->salt_len = p1; | 132 | kctx->salt_len = p1; |
133 | return 1; | 133 | return 1; |