diff options
author | Damien Miller <djm@mindrot.org> | 2003-06-02 10:57:59 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2003-06-02 10:57:59 +0200 |
commit | dcc8312a197384167ddf55741090b7bddf92d34e (patch) | |
tree | f471066737df58e4fe7dfecf6f885489f1046c36 /cipher-aes.c | |
parent | - (djm) Remove "noip6" option from RedHat spec file. This may now be (diff) | |
download | openssh-dcc8312a197384167ddf55741090b7bddf92d34e.tar.xz openssh-dcc8312a197384167ddf55741090b7bddf92d34e.zip |
- (djm) Fix use of macro before #define in cipher-aes.c
Diffstat (limited to 'cipher-aes.c')
-rw-r--r-- | cipher-aes.c | 4 |
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 @@ * 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 */ |