summaryrefslogtreecommitdiff
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 226373ac1..128c91491 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120060911
2 - (dtucker) [cipher-aes.c] Include string.h for memcpy and friends. Noted
3 by Pekka Savola.
4
120060910 520060910
2 - (dtucker) [contrib/aix/buildbff.sh] Ensure that perl is available. 6 - (dtucker) [contrib/aix/buildbff.sh] Ensure that perl is available.
3 - (dtucker) [configure.ac] Add -lcrypt to let DragonFly build OOTB. 7 - (dtucker) [configure.ac] Add -lcrypt to let DragonFly build OOTB.
@@ -5424,4 +5428,4 @@
5424 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 5428 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
5425 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 5429 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
5426 5430
5427$Id: ChangeLog,v 1.4542 2006/09/10 10:25:51 dtucker Exp $ 5431$Id: ChangeLog,v 1.4543 2006/09/11 10:46:13 dtucker Exp $
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 @@
33#include <openssl/evp.h> 33#include <openssl/evp.h>
34 34
35#include <stdarg.h> 35#include <stdarg.h>
36#include <string.h>
36 37
37#include "rijndael.h" 38#include "rijndael.h"
38#include "xmalloc.h" 39#include "xmalloc.h"