diff options
author | tb <> | 2022-11-18 15:10:51 +0000 |
---|---|---|
committer | tb <> | 2022-11-18 15:10:51 +0000 |
commit | 3a12e5fe21eaceb96473a7aaf9361f36f0f9b0f7 (patch) | |
tree | 260374b86546c94663ddc22f24529754568cb643 | |
parent | eb6a541f28bbed4ffac5a7a3415572e757ad15d2 (diff) | |
download | openbsd-3a12e5fe21eaceb96473a7aaf9361f36f0f9b0f7.tar.gz openbsd-3a12e5fe21eaceb96473a7aaf9361f36f0f9b0f7.tar.bz2 openbsd-3a12e5fe21eaceb96473a7aaf9361f36f0f9b0f7.zip |
Include bytestring.h directly rather than pulling it in via asn1_locl.h
-rw-r--r-- | src/lib/libcrypto/hmac/hm_ameth.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/hmac/hm_ameth.c b/src/lib/libcrypto/hmac/hm_ameth.c index 858110a561..faaa04b461 100644 --- a/src/lib/libcrypto/hmac/hm_ameth.c +++ b/src/lib/libcrypto/hmac/hm_ameth.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: hm_ameth.c,v 1.14 2022/11/18 15:01:04 tb Exp $ */ | 1 | /* $OpenBSD: hm_ameth.c,v 1.15 2022/11/18 15:10:51 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2007. | 3 | * project 2007. |
4 | */ | 4 | */ |
@@ -64,6 +64,7 @@ | |||
64 | #include <openssl/hmac.h> | 64 | #include <openssl/hmac.h> |
65 | 65 | ||
66 | #include "asn1_locl.h" | 66 | #include "asn1_locl.h" |
67 | #include "bytestring.h" | ||
67 | #include "evp_locl.h" | 68 | #include "evp_locl.h" |
68 | #include "hmac_local.h" | 69 | #include "hmac_local.h" |
69 | 70 | ||