summaryrefslogtreecommitdiff
path: root/cipher-aes.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-06-02 18:57:59 +1000
committerDamien Miller <djm@mindrot.org>2003-06-02 18:57:59 +1000
commitdcc8312a197384167ddf55741090b7bddf92d34e (patch)
treef471066737df58e4fe7dfecf6f885489f1046c36 /cipher-aes.c
parentdba59508205febc2f0dbf5e1cc9c3f9268af2f70 (diff)
- (djm) Fix use of macro before #define in cipher-aes.c
Diffstat (limited to 'cipher-aes.c')
-rw-r--r--cipher-aes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher-aes.c b/cipher-aes.c
index bbfbe7210..c41def600 100644
--- a/cipher-aes.c
+++ b/cipher-aes.c
@@ -22,8 +22,8 @@
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */ 23 */
24 24
25#if OPENSSL_VERSION_NUMBER < 0x00907000L
26#include "includes.h" 25#include "includes.h"
26#if OPENSSL_VERSION_NUMBER < 0x00907000L
27RCSID("$OpenBSD: cipher-aes.c,v 1.1 2003/05/15 03:08:29 markus Exp $"); 27RCSID("$OpenBSD: cipher-aes.c,v 1.1 2003/05/15 03:08:29 markus Exp $");
28 28
29#include <openssl/evp.h> 29#include <openssl/evp.h>
@@ -153,4 +153,4 @@ evp_rijndael(void)
153#endif 153#endif
154 return (&rijndal_cbc); 154 return (&rijndal_cbc);
155} 155}
156#endif 156#endif /* OPENSSL_VERSION_NUMBER */