diff options
author | Darren Tucker <dtucker@zip.com.au> | 2006-09-11 20:46:13 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2006-09-11 20:46:13 +1000 |
commit | 5d8a9acef0228e53e2069c6218beb8716b89aacd (patch) | |
tree | 61e1eb001b72bfa818965f70464e515c94afc8d6 /cipher-aes.c | |
parent | 57b2920ad896b4c1b7a6f5ba0171bdb311e8cc36 (diff) | |
download | openssh-git-5d8a9acef0228e53e2069c6218beb8716b89aacd.tar.gz |
- (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.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cipher-aes.c b/cipher-aes.c index 14ef10f0..3ea59496 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" |