diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-11-18 15:10:52 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-11-18 15:10:52 +0000 |
commit | bf913fc16e4aa3c1e720d5bb5a4610dae3c6beff (patch) | |
tree | 53e9ca4295be21f3acd95cc6fdc1a8190a98a0d0 /lib | |
parent | bbf3b181d70106f16d567654ad65dc6bb0b26cd5 (diff) |
Include bytestring.h directly rather than pulling it in via asn1_locl.h
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/hmac/hm_ameth.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/hmac/hm_ameth.c b/lib/libcrypto/hmac/hm_ameth.c index 858110a5613..faaa04b461b 100644 --- a/lib/libcrypto/hmac/hm_ameth.c +++ b/lib/libcrypto/hmac/hm_ameth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hm_ameth.c,v 1.14 2022/11/18 15:01:04 tb Exp $ */ +/* $OpenBSD: hm_ameth.c,v 1.15 2022/11/18 15:10:51 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2007. */ @@ -64,6 +64,7 @@ #include <openssl/hmac.h> #include "asn1_locl.h" +#include "bytestring.h" #include "evp_locl.h" #include "hmac_local.h" |