diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-23 01:11:06 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-23 01:11:06 +0000 |
commit | 22cfc7665339352cd6f13795f5b146f84b7b3ef0 (patch) | |
tree | ec262d7e5132b11f977cfabf02a35029809d18d5 /usr.bin/ssh | |
parent | 48fb63e6fce1dcfe23055e9ffc23f51255e36f31 (diff) |
#include <signal.h> for sig_atomic_t; need this prior to <sys/param.h>
move
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/auth.h | 3 | ||||
-rw-r--r-- | usr.bin/ssh/dispatch.c | 4 | ||||
-rw-r--r-- | usr.bin/ssh/kex.h | 5 | ||||
-rw-r--r-- | usr.bin/ssh/sftp-client.c | 3 |
4 files changed, 11 insertions, 4 deletions
diff --git a/usr.bin/ssh/auth.h b/usr.bin/ssh/auth.h index 76e4a055b46..e781cd8f32a 100644 --- a/usr.bin/ssh/auth.h +++ b/usr.bin/ssh/auth.h @@ -1,4 +1,4 @@ -/* $OpenBSD: auth.h,v 1.54 2006/07/06 16:03:53 stevesk Exp $ */ +/* $OpenBSD: auth.h,v 1.55 2006/07/23 01:11:05 stevesk Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -33,6 +33,7 @@ #include <openssl/rsa.h> #include <pwd.h> +#include <signal.h> #ifdef HAVE_LOGIN_CAP #include <login_cap.h> diff --git a/usr.bin/ssh/dispatch.c b/usr.bin/ssh/dispatch.c index 4f965a62d57..c1d98a78e69 100644 --- a/usr.bin/ssh/dispatch.c +++ b/usr.bin/ssh/dispatch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dispatch.c,v 1.19 2006/04/20 09:27:09 djm Exp $ */ +/* $OpenBSD: dispatch.c,v 1.20 2006/07/23 01:11:05 stevesk Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -24,6 +24,8 @@ */ #include "includes.h" +#include <signal.h> + #include "ssh1.h" #include "ssh2.h" #include "log.h" diff --git a/usr.bin/ssh/kex.h b/usr.bin/ssh/kex.h index 137c3d8eb0b..9d43b027fc1 100644 --- a/usr.bin/ssh/kex.h +++ b/usr.bin/ssh/kex.h @@ -1,4 +1,4 @@ -/* $OpenBSD: kex.h,v 1.42 2006/04/20 09:27:09 djm Exp $ */ +/* $OpenBSD: kex.h,v 1.43 2006/07/23 01:11:05 stevesk Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -27,6 +27,9 @@ #define KEX_H #include <openssl/evp.h> + +#include <signal.h> + #include "buffer.h" #include "cipher.h" #include "key.h" diff --git a/usr.bin/ssh/sftp-client.c b/usr.bin/ssh/sftp-client.c index 3714d94e6b6..f4d09f67dc7 100644 --- a/usr.bin/ssh/sftp-client.c +++ b/usr.bin/ssh/sftp-client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp-client.c,v 1.69 2006/07/22 20:48:23 stevesk Exp $ */ +/* $OpenBSD: sftp-client.c,v 1.70 2006/07/23 01:11:05 stevesk Exp $ */ /* * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> * @@ -28,6 +28,7 @@ #include <errno.h> #include <fcntl.h> +#include <signal.h> #include <string.h> #include <unistd.h> |