]> andersk Git - openssh.git/commitdiff
- (djm) Fix use of macro before #define in cipher-aes.c
authordjm <djm>
Mon, 2 Jun 2003 08:57:59 +0000 (08:57 +0000)
committerdjm <djm>
Mon, 2 Jun 2003 08:57:59 +0000 (08:57 +0000)
ChangeLog
cipher-aes.c

index 488de17f7d5fafb27e9250e8172befa54c5f2e24..0759e34f9f7f3218e029f5afbf999a34de976a0a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@
    CVS ID.
  - (djm) Remove "noip6" option from RedHat spec file. This may now be 
    set at runtime using AddressFamily option.
+ - (djm) Fix use of macro before #define in cipher-aes.c
 
 20030530
  - (dtucker) Add missing semicolon in md5crypt.c, patch from openssh at
index bbfbe72108784046cde8452a699b46b04d2de9f6..c41def600ca0108e925dde1946396e8fca96abb7 100644 (file)
@@ -22,8 +22,8 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#if OPENSSL_VERSION_NUMBER < 0x00907000L
 #include "includes.h"
+#if OPENSSL_VERSION_NUMBER < 0x00907000L
 RCSID("$OpenBSD: cipher-aes.c,v 1.1 2003/05/15 03:08:29 markus Exp $");
 
 #include <openssl/evp.h>
@@ -153,4 +153,4 @@ evp_rijndael(void)
 #endif
        return (&rijndal_cbc);
 }
-#endif
+#endif /* OPENSSL_VERSION_NUMBER */
This page took 0.364568 seconds and 5 git commands to generate.