From: Emilia Kasper Date: Fri, 5 Dec 2014 15:08:12 +0000 (+0100) Subject: Fix broken build X-Git-Tag: master-pre-reformat~174 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f50ffd10fa08c0762489119a4f36fa86163679ef;p=openssl Fix broken build Add includes missing from commit 33eab3f6af51c6d7fe68ee4960930df4f1616bd5 Reviewed-by: Geoff Thorpe --- diff --git a/engines/ccgost/gost94_keyx.c b/engines/ccgost/gost94_keyx.c index d48e21ae7c..79726c1be6 100644 --- a/engines/ccgost/gost94_keyx.c +++ b/engines/ccgost/gost94_keyx.c @@ -11,6 +11,7 @@ #include #include #include +#include #include #include @@ -288,4 +289,3 @@ err: GOST_KEY_TRANSPORT_free(gkt); return -1; } - diff --git a/engines/ccgost/gost_crypt.c b/engines/ccgost/gost_crypt.c index e640414ae3..a6aa4f1a1e 100644 --- a/engines/ccgost/gost_crypt.c +++ b/engines/ccgost/gost_crypt.c @@ -8,6 +8,7 @@ **********************************************************************/ #include #include "gost89.h" +#include #include #include "e_gost_err.h" #include "gost_lcl.h" @@ -631,4 +632,3 @@ int gost_imit_cleanup(EVP_MD_CTX *ctx) memset(ctx->md_data,0,sizeof(struct ossl_gost_imit_ctx)); return 1; } - diff --git a/engines/ccgost/gost_pmeth.c b/engines/ccgost/gost_pmeth.c index 7ccae8657e..4520387fc8 100644 --- a/engines/ccgost/gost_pmeth.c +++ b/engines/ccgost/gost_pmeth.c @@ -10,6 +10,7 @@ #include #include #include +#include #include /*For string_to_hex */ #include #include @@ -640,4 +641,3 @@ int register_pmeth_gost(int id, EVP_PKEY_METHOD **pmeth,int flags) return 1; } - diff --git a/engines/ccgost/gost_sign.c b/engines/ccgost/gost_sign.c index c0224fd3fb..93a1f270d6 100644 --- a/engines/ccgost/gost_sign.c +++ b/engines/ccgost/gost_sign.c @@ -11,6 +11,7 @@ #include #include #include +#include #include #include "gost_params.h"