summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/m_mdc2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/evp/m_mdc2.c')
-rw-r--r--src/lib/libcrypto/evp/m_mdc2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/m_mdc2.c b/src/lib/libcrypto/evp/m_mdc2.c
index 9f9bcf06ed..b08d559803 100644
--- a/src/lib/libcrypto/evp/m_mdc2.c
+++ b/src/lib/libcrypto/evp/m_mdc2.c
@@ -58,7 +58,6 @@
58 58
59#include <stdio.h> 59#include <stdio.h>
60#include "cryptlib.h" 60#include "cryptlib.h"
61#include "evp_locl.h"
62 61
63#ifndef OPENSSL_NO_MDC2 62#ifndef OPENSSL_NO_MDC2
64 63
@@ -66,7 +65,9 @@
66#include <openssl/objects.h> 65#include <openssl/objects.h>
67#include <openssl/x509.h> 66#include <openssl/x509.h>
68#include <openssl/mdc2.h> 67#include <openssl/mdc2.h>
68#ifndef OPENSSL_NO_RSA
69#include <openssl/rsa.h> 69#include <openssl/rsa.h>
70#endif
70 71
71static int init(EVP_MD_CTX *ctx) 72static int init(EVP_MD_CTX *ctx)
72 { return MDC2_Init(ctx->md_data); } 73 { return MDC2_Init(ctx->md_data); }