diff options
Diffstat (limited to 'cipher-ctr.c')
-rw-r--r-- | cipher-ctr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher-ctr.c b/cipher-ctr.c index ea0f9b3b7..32771f287 100644 --- a/cipher-ctr.c +++ b/cipher-ctr.c | |||
@@ -16,7 +16,7 @@ | |||
16 | */ | 16 | */ |
17 | #include "includes.h" | 17 | #include "includes.h" |
18 | 18 | ||
19 | #ifndef OPENSSL_HAVE_EVPCTR | 19 | #if defined(WITH_OPENSSL) && !defined(OPENSSL_HAVE_EVPCTR) |
20 | #include <sys/types.h> | 20 | #include <sys/types.h> |
21 | 21 | ||
22 | #include <stdarg.h> | 22 | #include <stdarg.h> |
@@ -143,4 +143,4 @@ evp_aes_128_ctr(void) | |||
143 | return (&aes_ctr); | 143 | return (&aes_ctr); |
144 | } | 144 | } |
145 | 145 | ||
146 | #endif /* OPENSSL_HAVE_EVPCTR */ | 146 | #endif /* defined(WITH_OPENSSL) && !defined(OPENSSL_HAVE_EVPCTR) */ |