diff options
author | Bodo Möller <bodo@openssl.org> | 2002-11-13 15:01:34 +0100 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2002-11-13 15:01:34 +0100 |
commit | b6fee5c2fb68918ff64cba8b7a1ff24e9d922093 (patch) | |
tree | 09b59b96931d1ca94e628bfa81890a081daec537 /crypto/aes/aes_cbc.c | |
parent | remove unused old directory crypto/rijndael (superseded by crypto/aes) (diff) | |
download | openssl-b6fee5c2fb68918ff64cba8b7a1ff24e9d922093.tar.xz openssl-b6fee5c2fb68918ff64cba8b7a1ff24e9d922093.zip |
disable weird assert()s
Diffstat (limited to 'crypto/aes/aes_cbc.c')
-rw-r--r-- | crypto/aes/aes_cbc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/aes/aes_cbc.c b/crypto/aes/aes_cbc.c index bf1a808cf0..8974dc35a5 100644 --- a/crypto/aes/aes_cbc.c +++ b/crypto/aes/aes_cbc.c @@ -49,7 +49,13 @@ * */ +#ifndef AES_DEBUG +# ifndef NDEBUG +# define NDEBUG +# endif +#endif #include <assert.h> + #include <openssl/aes.h> #include "aes_locl.h" |