summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2002-09-17 13:08:04 +0000
committermarkus <markus@openbsd.org>2002-09-17 13:08:04 +0000
commitddcdbe9a3a1197f55feed126ee2af4f501a796d4 (patch)
tree6f397744d2e1e8287a87f2aee2f803e26b35d799 /lib/libssl/src
parentint is small for returned values from uvm_rb_{space,subtree_space}, use (diff)
downloadwireguard-openbsd-ddcdbe9a3a1197f55feed126ee2af4f501a796d4.tar.xz
wireguard-openbsd-ddcdbe9a3a1197f55feed126ee2af4f501a796d4.zip
undo local change, HMAC_Init() already does HMAC_CTX_init if(key && md)
Diffstat (limited to 'lib/libssl/src')
-rw-r--r--lib/libssl/src/crypto/hmac/hmac.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libssl/src/crypto/hmac/hmac.c b/lib/libssl/src/crypto/hmac/hmac.c
index 46480a4c955..da363b79507 100644
--- a/lib/libssl/src/crypto/hmac/hmac.c
+++ b/lib/libssl/src/crypto/hmac/hmac.c
@@ -70,7 +70,6 @@ void HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len,
{
reset=1;
ctx->md=md;
- EVP_MD_CTX_init(&ctx->md_ctx);
}
else
md=ctx->md;