summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordjm <djm>2006-04-23 02:28:53 +0000
committerdjm <djm>2006-04-23 02:28:53 +0000
commit4c5e2d86b4810f9e9bb59ab3b5d9ef9d3172c736 (patch)
tree5aca0a08543572928ccd12e77371982800e97869
parent96f9297be9123b931f75f28d77e6fb45e69a2388 (diff)
downloadopenssh-4c5e2d86b4810f9e9bb59ab3b5d9ef9d3172c736.tar.gz
- (djm) [auth.h dispatch.h kex.h] sprinkle in signal.h to get
sig_atomic_t
-rw-r--r--ChangeLog4
-rw-r--r--auth.h2
-rw-r--r--dispatch.h3
-rw-r--r--kex.h1
4 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a1c6df16..eaeab489 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -69,6 +69,8 @@
- stevesk@cvs.openbsd.org 2006/04/22 18:29:33
[crc32.c]
remove extra spaces
+ - (djm) [auth.h dispatch.h kex.h] sprinkle in signal.h to get
+ sig_atomic_t
20060421
- (djm) [Makefile.in configure.ac session.c sshpty.c]
@@ -4580,4 +4582,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.4316 2006/04/23 02:12:24 djm Exp $
+$Id: ChangeLog,v 1.4317 2006/04/23 02:28:53 djm Exp $
diff --git a/auth.h b/auth.h
index adbfdd2e..5f9fb6f1 100644
--- a/auth.h
+++ b/auth.h
@@ -28,6 +28,8 @@
#ifndef AUTH_H
#define AUTH_H
+#include <signal.h>
+
#include "key.h"
#include "hostfile.h"
#include "buffer.h"
diff --git a/dispatch.h b/dispatch.h
index 4bca8a5a..3e3d1a1a 100644
--- a/dispatch.h
+++ b/dispatch.h
@@ -23,6 +23,9 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+
+#include <signal.h>
+
enum {
DISPATCH_BLOCK,
DISPATCH_NONBLOCK
diff --git a/kex.h b/kex.h
index 137c3d8e..a4a8af33 100644
--- a/kex.h
+++ b/kex.h
@@ -26,6 +26,7 @@
#ifndef KEX_H
#define KEX_H
+#include <signal.h>
#include <openssl/evp.h>
#include "buffer.h"
#include "cipher.h"