summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--bufaux.c2
-rw-r--r--bufbn.c2
-rw-r--r--bufec.c2
-rw-r--r--buffer.c2
5 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e42d95a7c..00c8b2775 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -19,6 +19,8 @@
19 OpenSSL or if OpenSSL has ECC. 19 OpenSSL or if OpenSSL has ECC.
20 - (dtucker) [openbsd-compat/arc4random.c] Use explicit_bzero instead of an 20 - (dtucker) [openbsd-compat/arc4random.c] Use explicit_bzero instead of an
21 assigment that might get optimized out. ok djm@ 21 assigment that might get optimized out. ok djm@
22 - (dtucker) [bufaux.c bufbn.c bufec.c buffer.c] Pull in includes.h for
23 compat stuff, specifically whether or not OpenSSL has ECC.
22 24
2320140527 2520140527
24 - (djm) [cipher.c] Fix merge botch. 26 - (djm) [cipher.c] Fix merge botch.
diff --git a/bufaux.c b/bufaux.c
index aa9b892d9..3976896a9 100644
--- a/bufaux.c
+++ b/bufaux.c
@@ -17,6 +17,8 @@
17 17
18/* Emulation wrappers for legacy OpenSSH buffer API atop sshbuf */ 18/* Emulation wrappers for legacy OpenSSH buffer API atop sshbuf */
19 19
20#include "includes.h"
21
20#include <sys/types.h> 22#include <sys/types.h>
21 23
22#include "buffer.h" 24#include "buffer.h"
diff --git a/bufbn.c b/bufbn.c
index 0a519ed2d..b7f7cb122 100644
--- a/bufbn.c
+++ b/bufbn.c
@@ -18,6 +18,8 @@
18 18
19/* Emulation wrappers for legacy OpenSSH buffer API atop sshbuf */ 19/* Emulation wrappers for legacy OpenSSH buffer API atop sshbuf */
20 20
21#include "includes.h"
22
21#include <sys/types.h> 23#include <sys/types.h>
22 24
23#include "buffer.h" 25#include "buffer.h"
diff --git a/bufec.c b/bufec.c
index b33ede385..127e56d43 100644
--- a/bufec.c
+++ b/bufec.c
@@ -18,6 +18,8 @@
18 18
19/* Emulation wrappers for legacy OpenSSH buffer API atop sshbuf */ 19/* Emulation wrappers for legacy OpenSSH buffer API atop sshbuf */
20 20
21#include "includes.h"
22
21#include <sys/types.h> 23#include <sys/types.h>
22 24
23#include "buffer.h" 25#include "buffer.h"
diff --git a/buffer.c b/buffer.c
index 07bc186d0..c5f708ab2 100644
--- a/buffer.c
+++ b/buffer.c
@@ -18,6 +18,8 @@
18 18
19/* Emulation wrappers for legacy OpenSSH buffer API atop sshbuf */ 19/* Emulation wrappers for legacy OpenSSH buffer API atop sshbuf */
20 20
21#include "includes.h"
22
21#include <sys/types.h> 23#include <sys/types.h>
22 24
23#include "buffer.h" 25#include "buffer.h"