From: dtucker Date: Mon, 11 Sep 2006 10:46:13 +0000 (+0000) Subject: - (dtucker) [cipher-aes.c] Include string.h for memcpy and friends. Noted X-Git-Tag: V_4_4_P1~20 X-Git-Url: http://andersk.mit.edu/gitweb/openssh.git/commitdiff_plain/7238aaad35f6b2cfd5e16ddf9c61d26da1344e18 - (dtucker) [cipher-aes.c] Include string.h for memcpy and friends. Noted by Pekka Savola. --- diff --git a/ChangeLog b/ChangeLog index d6104104..4af0e3e0 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. 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 #include +#include #include "rijndael.h" #include "xmalloc.h"