summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--rijndael.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3493db72b..ef7c54a46 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -80,6 +80,8 @@
80 prefer no compression 80 prefer no compression
81 - (djm) Fix scp user@host handling 81 - (djm) Fix scp user@host handling
82 - (djm) Don't clobber ssh_prng_cmds on install 82 - (djm) Don't clobber ssh_prng_cmds on install
83 - (stevesk) Include config.h in rijndael.c so we define intXX_t and
84 u_intXX_t types on all platforms.
83 85
8420001007 8620001007
85 - (stevesk) Print PAM return value in PAM log messages to aid 87 - (stevesk) Print PAM return value in PAM log messages to aid
diff --git a/rijndael.c b/rijndael.c
index bb592bc2f..fd1cc99b8 100644
--- a/rijndael.c
+++ b/rijndael.c
@@ -38,7 +38,7 @@ Mean: 500 cycles = 51.2 mbits/sec
38 38
39*/ 39*/
40 40
41#include <sys/types.h> 41#include "config.h"
42#include "rijndael.h" 42#include "rijndael.h"
43 43
44void gen_tabs __P((void)); 44void gen_tabs __P((void));