diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2003-11-26 21:44:30 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2003-11-26 21:44:30 +0000 |
commit | 220f7bac51577d536aa19161a3b9715906faefc5 (patch) | |
tree | 11969a7533723af67f72575c973e9745494ac613 /usr.bin | |
parent | 15344b1f957fb5130cef1de67610b7542784fb12 (diff) |
fix #ifdef before #define; ok markus@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/cipher-aes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/cipher-aes.c b/usr.bin/ssh/cipher-aes.c index 7f0e978aa45..cd59fff3d91 100644 --- a/usr.bin/ssh/cipher-aes.c +++ b/usr.bin/ssh/cipher-aes.c @@ -22,9 +22,9 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#if OPENSSL_VERSION_NUMBER < 0x00907000L #include "includes.h" -RCSID("$OpenBSD: cipher-aes.c,v 1.1 2003/05/15 03:08:29 markus Exp $"); +#if OPENSSL_VERSION_NUMBER < 0x00907000L +RCSID("$OpenBSD: cipher-aes.c,v 1.2 2003/11/26 21:44:29 djm Exp $"); #include <openssl/evp.h> #include "rijndael.h" |