diff options
author | Matt Caswell <matt@openssl.org> | 2016-03-17 11:50:23 +0000 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-03-18 12:09:27 +0000 |
commit | 114de5b59502e1764c14082e14f07562ad4e6a15 (patch) | |
tree | 87fe1abb8d2ff7c4c061faeb95a2b80c1d568d02 /crypto/init.c | |
parent | bb4cc75b1ea8fb85ed9299dd6d5124eec686359c (diff) | |
download | openssl-new-114de5b59502e1764c14082e14f07562ad4e6a15.tar.gz |
Ensure that no-comp functions are flagged as such
mkdef.pl was not detecting no-comp functions. This updates the header file
so that mkdef.pl detects that no-comp applies, and the functions are marked
accordingly.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/init.c')
-rw-r--r-- | crypto/init.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/init.c b/crypto/init.c index 8c599894ba..fad7a85b82 100644 --- a/crypto/init.c +++ b/crypto/init.c @@ -66,7 +66,9 @@ #ifndef OPENSSL_NO_ENGINE #include <internal/engine.h> #endif +#ifndef OPENSSL_NO_COMP #include <openssl/comp.h> +#endif #include <internal/err.h> #include <stdlib.h> #include <assert.h> |