summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 a1c6df163..eaeab4897 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -69,6 +69,8 @@
69 - stevesk@cvs.openbsd.org 2006/04/22 18:29:33 69 - stevesk@cvs.openbsd.org 2006/04/22 18:29:33
70 [crc32.c] 70 [crc32.c]
71 remove extra spaces 71 remove extra spaces
72 - (djm) [auth.h dispatch.h kex.h] sprinkle in signal.h to get
73 sig_atomic_t
72 74
7320060421 7520060421
74 - (djm) [Makefile.in configure.ac session.c sshpty.c] 76 - (djm) [Makefile.in configure.ac session.c sshpty.c]
@@ -4580,4 +4582,4 @@
4580 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4582 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4581 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4583 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4582 4584
4583$Id: ChangeLog,v 1.4316 2006/04/23 02:12:24 djm Exp $ 4585$Id: ChangeLog,v 1.4317 2006/04/23 02:28:53 djm Exp $
diff --git a/auth.h b/auth.h
index adbfdd2e5..5f9fb6f10 100644
--- a/auth.h
+++ b/auth.h
@@ -28,6 +28,8 @@
28#ifndef AUTH_H 28#ifndef AUTH_H
29#define AUTH_H 29#define AUTH_H
30 30
31#include <signal.h>
32
31#include "key.h" 33#include "key.h"
32#include "hostfile.h" 34#include "hostfile.h"
33#include "buffer.h" 35#include "buffer.h"
diff --git a/dispatch.h b/dispatch.h
index 4bca8a5a0..3e3d1a1ad 100644
--- a/dispatch.h
+++ b/dispatch.h
@@ -23,6 +23,9 @@
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26
27#include <signal.h>
28
26enum { 29enum {
27 DISPATCH_BLOCK, 30 DISPATCH_BLOCK,
28 DISPATCH_NONBLOCK 31 DISPATCH_NONBLOCK
diff --git a/kex.h b/kex.h
index 137c3d8eb..a4a8af33e 100644
--- a/kex.h
+++ b/kex.h
@@ -26,6 +26,7 @@
26#ifndef KEX_H 26#ifndef KEX_H
27#define KEX_H 27#define KEX_H
28 28
29#include <signal.h>
29#include <openssl/evp.h> 30#include <openssl/evp.h>
30#include "buffer.h" 31#include "buffer.h"
31#include "cipher.h" 32#include "cipher.h"