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)
downloadopenssh-git-dcc8312a197384167ddf55741090b7bddf92d34e.tar.gz
- (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 bbfbe721..c41def60 100644
--- a/cipher-aes.c
+++ b/cipher-aes.c
@@ -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 */