diff options
author | Rich Salz <rsalz@openssl.org> | 2016-03-18 19:30:20 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-03-21 00:48:36 +0100 |
commit | 3c27208fab1dc29f47f088490404df5abfcdfb05 (patch) | |
tree | 3654ea8c099e19203a48ce2688aeee02f46fd12b /ssl/t1_enc.c | |
parent | GH886: CONNECT should use HTTP/1.1 (diff) | |
download | openssl-3c27208fab1dc29f47f088490404df5abfcdfb05.tar.xz openssl-3c27208fab1dc29f47f088490404df5abfcdfb05.zip |
Remove #error from include files.
Don't have #error statements in header files, but instead wrap
the contents of that file in #ifndef OPENSSL_NO_xxx
This means it is now always safe to include the header file.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/t1_enc.c')
-rw-r--r-- | ssl/t1_enc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ssl/t1_enc.c b/ssl/t1_enc.c index f2650b0b77..6e56441d0f 100644 --- a/ssl/t1_enc.c +++ b/ssl/t1_enc.c @@ -136,9 +136,7 @@ #include <stdio.h> #include "ssl_locl.h" -#ifndef OPENSSL_NO_COMP -# include <openssl/comp.h> -#endif +#include <openssl/comp.h> #include <openssl/evp.h> #include <openssl/kdf.h> #include <openssl/rand.h> |