diff options
-rw-r--r-- | usr.bin/ssh/auth1.c | 6 | ||||
-rw-r--r-- | usr.bin/ssh/serverloop.c | 3 | ||||
-rw-r--r-- | usr.bin/ssh/session.c | 3 | ||||
-rw-r--r-- | usr.bin/ssh/sshconnect2.c | 3 |
4 files changed, 11 insertions, 4 deletions
diff --git a/usr.bin/ssh/auth1.c b/usr.bin/ssh/auth1.c index d25d5b2894d..16638981fe7 100644 --- a/usr.bin/ssh/auth1.c +++ b/usr.bin/ssh/auth1.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth1.c,v 1.66 2006/03/25 13:17:01 djm Exp $ */ +/* $OpenBSD: auth1.c,v 1.67 2006/07/20 15:26:14 stevesk Exp $ */ /* * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * All rights reserved @@ -12,6 +12,10 @@ #include "includes.h" +#include <sys/types.h> + +#include <unistd.h> + #include "xmalloc.h" #include "rsa.h" #include "ssh1.h" diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c index c716c6c3a08..31330461928 100644 --- a/usr.bin/ssh/serverloop.c +++ b/usr.bin/ssh/serverloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: serverloop.c,v 1.139 2006/07/11 20:07:25 stevesk Exp $ */ +/* $OpenBSD: serverloop.c,v 1.140 2006/07/20 15:26:15 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -48,6 +48,7 @@ #include <pwd.h> #include <signal.h> #include <termios.h> +#include <unistd.h> #include "xmalloc.h" #include "packet.h" diff --git a/usr.bin/ssh/session.c b/usr.bin/ssh/session.c index c3cccdaf7a5..46f93a3a8c2 100644 --- a/usr.bin/ssh/session.c +++ b/usr.bin/ssh/session.c @@ -1,4 +1,4 @@ -/* $OpenBSD: session.c,v 1.210 2006/07/19 13:07:10 dtucker Exp $ */ +/* $OpenBSD: session.c,v 1.211 2006/07/20 15:26:15 stevesk Exp $ */ /* * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * All rights reserved @@ -46,6 +46,7 @@ #include <paths.h> #include <pwd.h> #include <signal.h> +#include <unistd.h> #include "ssh.h" #include "ssh1.h" diff --git a/usr.bin/ssh/sshconnect2.c b/usr.bin/ssh/sshconnect2.c index 14d51ba45fe..4a1e2c3b672 100644 --- a/usr.bin/ssh/sshconnect2.c +++ b/usr.bin/ssh/sshconnect2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect2.c,v 1.156 2006/07/11 20:07:25 stevesk Exp $ */ +/* $OpenBSD: sshconnect2.c,v 1.157 2006/07/20 15:26:15 stevesk Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -31,6 +31,7 @@ #include <sys/stat.h> #include <errno.h> +#include <unistd.h> #include "ssh.h" #include "ssh2.h" |