diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2015-03-23 23:57:47 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2015-03-24 13:03:36 +0100 |
commit | 27af42f9ac7aa88006dd4cf73abda8abbf67e6d6 (patch) | |
tree | 765cb74ff520dd8697e80a8c82d9f82e82ea9824 /crypto/cmac/cm_pmeth.c | |
parent | Move some ASN.1 internals to asn1_int.h (diff) | |
download | openssl-27af42f9ac7aa88006dd4cf73abda8abbf67e6d6.tar.xz openssl-27af42f9ac7aa88006dd4cf73abda8abbf67e6d6.zip |
Move some EVP internals to evp_int.h
Move EVP internals to evp_int.h, remove -Ievp hack from crypto/Makefile
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/cmac/cm_pmeth.c')
-rw-r--r-- | crypto/cmac/cm_pmeth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/cmac/cm_pmeth.c b/crypto/cmac/cm_pmeth.c index a2300df187..389ae5da84 100644 --- a/crypto/cmac/cm_pmeth.c +++ b/crypto/cmac/cm_pmeth.c @@ -57,7 +57,7 @@ #include <openssl/x509v3.h> #include <openssl/evp.h> #include <openssl/cmac.h> -#include "evp_locl.h" +#include "internal/evp_int.h" /* The context structure and "key" is simply a CMAC_CTX */ |