summaryrefslogtreecommitdiffstats
path: root/cipher-aes.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2006-09-11 12:46:13 +0200
committerDarren Tucker <dtucker@zip.com.au>2006-09-11 12:46:13 +0200
commit5d8a9acef0228e53e2069c6218beb8716b89aacd (patch)
tree61e1eb001b72bfa818965f70464e515c94afc8d6 /cipher-aes.c
parent - (dtucker) [configure.ac] Add -lcrypt to let DragonFly build OOTB. (diff)
downloadopenssh-5d8a9acef0228e53e2069c6218beb8716b89aacd.tar.xz
openssh-5d8a9acef0228e53e2069c6218beb8716b89aacd.zip
- (dtucker) [cipher-aes.c] Include string.h for memcpy and friends. Noted
by Pekka Savola.
Diffstat (limited to 'cipher-aes.c')
-rw-r--r--cipher-aes.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/cipher-aes.c b/cipher-aes.c
index 14ef10f03..3ea594969 100644
--- a/cipher-aes.c
+++ b/cipher-aes.c
@@ -33,6 +33,7 @@
#include <openssl/evp.h>
#include <stdarg.h>
+#include <string.h>
#include "rijndael.h"
#include "xmalloc.h"