]> andersk Git - openssh.git/commitdiff
- stevesk@cvs.openbsd.org 2006/07/20 15:26:15
authordjm <djm>
Mon, 24 Jul 2006 04:07:35 +0000 (04:07 +0000)
committerdjm <djm>
Mon, 24 Jul 2006 04:07:35 +0000 (04:07 +0000)
     [auth1.c serverloop.c session.c sshconnect2.c]
     missed some needed #include <unistd.h> when KERBEROS5=no; issue from
     massimo@cedoc.mo.it

ChangeLog
auth1.c
serverloop.c
session.c
sshconnect2.c

index c4f25cf8d3ed5755d0f0214848da7c1659336793..ff261d3033462603b53407c54c4feaac2dca9cbd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
      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
diff --git a/auth1.c b/auth1.c
index 6a6cff862aa6dcd21ee933668021297984ca24f2..0892918828c575d13edf08c3c53fa3fc28b05915 100644 (file)
--- 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
 
 #include "includes.h"
 
+#include <sys/types.h>
+
+#include <unistd.h>
+
 #include "xmalloc.h"
 #include "rsa.h"
 #include "ssh1.h"
index 83138aec2552d26bc3f33964cc86a1546ba2d002..1ca3e673f90cbfc142691b00d4adbe0a16a05d8c 100644 (file)
@@ -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"
index e189acdf25cb44189cf3f486dd4cfb74e7d7e3ad..be65086ae77c2c5d81356a5671f675a97c3f9f77 100644 (file)
--- 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"
index 04ea8dfc1d71887a9c416bb01b5a1abba1b98414..f55002bdf7a70d5cdf2e11184694c3c6190a1ed4 100644 (file)
@@ -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"
 
This page took 0.086819 seconds and 5 git commands to generate.