summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--auth1.c6
-rw-r--r--serverloop.c3
-rw-r--r--session.c6
-rw-r--r--sshconnect2.c3
5 files changed, 18 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 0ae5d3f6..50937e3b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -61,6 +61,10 @@
Add ForceCommand keyword to sshd_config, equivalent to the "command="
key option, man page entry and example in sshd_config.
Feedback & ok djm@, man page corrections & ok jmc@
+ - stevesk@cvs.openbsd.org 2006/07/20 15:26:15
+ [auth1.c serverloop.c session.c sshconnect2.c]
+ missed some needed #include <unistd.h> when KERBEROS5=no; issue from
+ massimo@cedoc.mo.it
20060713
- (dtucker) [auth-krb5.c auth-pam.c] Still more errno.h
@@ -4979,4 +4983,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.4422 2006/07/24 04:06:47 djm Exp $
+$Id: ChangeLog,v 1.4423 2006/07/24 04:07:35 djm Exp $
diff --git a/auth1.c b/auth1.c
index 6a6cff86..08929188 100644
--- a/auth1.c
+++ b/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/serverloop.c b/serverloop.c
index 83138aec..1ca3e673 100644
--- a/serverloop.c
+++ b/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/session.c b/session.c
index e189acdf..be65086a 100644
--- a/session.c
+++ b/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
@@ -43,6 +43,8 @@
#include <sys/wait.h>
#include <sys/un.h>
+#include <arpa/inet.h>
+
#include <errno.h>
#include <grp.h>
#ifdef HAVE_PATHS_H
@@ -50,7 +52,7 @@
#endif
#include <pwd.h>
#include <signal.h>
-#include <arpa/inet.h>
+#include <unistd.h>
#include "ssh.h"
#include "ssh1.h"
diff --git a/sshconnect2.c b/sshconnect2.c
index 04ea8dfc..f55002bd 100644
--- a/sshconnect2.c
+++ b/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.
*
@@ -30,6 +30,7 @@
#include <sys/stat.h>
#include <errno.h>
+#include <unistd.h>
#include "openbsd-compat/sys-queue.h"