summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2006-09-11 20:46:13 +1000
committerDarren Tucker <dtucker@zip.com.au>2006-09-11 20:46:13 +1000
commit5d8a9acef0228e53e2069c6218beb8716b89aacd (patch)
tree61e1eb001b72bfa818965f70464e515c94afc8d6
parent57b2920ad896b4c1b7a6f5ba0171bdb311e8cc36 (diff)
- (dtucker) [cipher-aes.c] Include string.h for memcpy and friends. Noted
by Pekka Savola.
-rw-r--r--ChangeLog6
-rw-r--r--cipher-aes.c1
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 226373ac..128c9149 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20060911
+ - (dtucker) [cipher-aes.c] Include string.h for memcpy and friends. Noted
+ by Pekka Savola.
+
20060910
- (dtucker) [contrib/aix/buildbff.sh] Ensure that perl is available.
- (dtucker) [configure.ac] Add -lcrypt to let DragonFly build OOTB.
@@ -5424,4 +5428,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
-$Id: ChangeLog,v 1.4542 2006/09/10 10:25:51 dtucker Exp $
+$Id: ChangeLog,v 1.4543 2006/09/11 10:46:13 dtucker Exp $
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"