]> andersk Git - openssh.git/commitdiff
- (djm) [loginrec.c ssh-rand-helper.c sshd.c openbsd-compat/glob.c]
authordjm <djm>
Mon, 10 Jul 2006 11:33:04 +0000 (11:33 +0000)
committerdjm <djm>
Mon, 10 Jul 2006 11:33:04 +0000 (11:33 +0000)
   [openbsd-compat/mktemp.c openbsd-compat/openbsd-compat.h]
   [openbsd-compat/port-tun.c openbsd-compat/readpassphrase.c]
   [openbsd-compat/xcrypt.c] Fix includes.h fallout, mainly fcntl.h

ChangeLog
loginrec.c
openbsd-compat/glob.c
openbsd-compat/mktemp.c
openbsd-compat/openbsd-compat.h
openbsd-compat/port-tun.c
openbsd-compat/readpassphrase.c
openbsd-compat/xcrypt.c
ssh-rand-helper.c
sshd.c

index 7881fc9055dcb6ee57ca9601642d0e2e1d1221c2..dbca01283d9e79e2734d6f02f0de826fdffcfed9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
    - djm@cvs.openbsd.org 2006/07/10 11:25:53
      [sftp-server.c]
      don't log variables that aren't yet set
+ - (djm) [loginrec.c ssh-rand-helper.c sshd.c openbsd-compat/glob.c]
+   [openbsd-compat/mktemp.c openbsd-compat/openbsd-compat.h]
+   [openbsd-compat/port-tun.c openbsd-compat/readpassphrase.c]
+   [openbsd-compat/xcrypt.c] Fix includes.h fallout, mainly fcntl.h
 
 20060706
  - (dtucker) [configure.ac] Try AIX blibpath test in different order when
index 42f022fd9986d3e790cfda76ceda5b9e2c8551f7..a27a3ae61cfef8cce78a7aa9d3a579ddd5cc2dd0 100644 (file)
 
 #include <netinet/in.h>
 
+#include <fcntl.h>
 #include <pwd.h>
 
 #include "ssh.h"
index fd3d86c4c330284096eeb1e7c5d00670a5db9e34..439d2f50d424713ffab7da0d9d73870c400ea9bf 100644 (file)
@@ -38,6 +38,7 @@
 #include <sys/stat.h>
 #include <dirent.h>
 #include <ctype.h>
+#include <pwd.h>
 
 static long
 get_arg_max(void)
index 53a50c5121de660e9cb2157291813b00eed2e12b..75a339156e37453cef57eaeb2682c7682a34e4ff 100644 (file)
@@ -37,6 +37,7 @@
 
 #include <sys/types.h>
 #include <sys/stat.h>
+#include <fcntl.h>
 #include <ctype.h>
 
 #if !defined(HAVE_MKDTEMP) || defined(HAVE_STRICT_MKSTEMP)
index f6a4714a3532bb87cea6e5cf20654e1aa24bd681..746591edec8253de6c25e29820c12057180df3d5 100644 (file)
@@ -31,6 +31,9 @@
 
 #include "includes.h"
 
+#include <sys/types.h>
+#include <pwd.h>
+
 /* OpenBSD function replacements */
 #include "base64.h"
 #include "sigact.h"
@@ -131,8 +134,6 @@ int BSDgetopt(int argc, char * const *argv, const char *opts);
 #include "bsd-misc.h"
 #include "bsd-waitpid.h"
 
-/*#include <sys/types.h> XXX Still needed? * For uid_t, gid_t * */
-
 #ifndef HAVE_GETPEEREID
 int getpeereid(int , uid_t *, gid_t *);
 #endif 
@@ -177,7 +178,6 @@ void *xmmap(size_t size);
 char *xcrypt(const char *password, const char *salt);
 char *shadow_pw(struct passwd *pw);
 
-
 /* rfc2553 socket API replacements */
 #include "fake-rfc2553.h"
 
index 6e1fed9691f496ac670465914ed38e3177769182..a87b809d51ea74911462e4d545c231fda3acb626 100644 (file)
 
 #include "includes.h"
 
+#include <sys/types.h>
 #include <sys/ioctl.h>
 #include <netinet/ip.h>
 
+#include <fcntl.h>
+
 #include "log.h"
 #include "misc.h"
 #include "bufaux.h"
index 95e26dcd45f9b1ff91dff7cd2c0b8911f9b7c124..95c0af815a2e33324eee8c650a1e2bdb9c0d3a4c 100644 (file)
@@ -29,6 +29,7 @@
 #include <termios.h>
 #include <signal.h>
 #include <ctype.h>
+#include <fcntl.h>
 #include <readpassphrase.h>
 
 #ifdef TCSASOFT
index 9afa0b9f268a77966e3437e3d097b1d83c6c52b6..5d260f2c2653b0b0712c021c9bec02b906c440b3 100644 (file)
@@ -24,6 +24,9 @@
 
 #include "includes.h"
 
+#include <sys/types.h>
+#include <pwd.h>
+
 # ifdef HAVE_CRYPT_H
 #  include <crypt.h>
 # endif
index feb1bfb1834de675888e625f73b6ecc27f7eefb5..ebee90014d3cbb42ae9d8cd744fde27c711aa74b 100644 (file)
@@ -36,6 +36,7 @@
 # include <sys/un.h>
 #endif
 
+#include <fcntl.h>
 #include <pwd.h>
 #include <signal.h>
 
diff --git a/sshd.c b/sshd.c
index 591622fd0ba9720e2e9c5c87584cdef5188c02fb..602116edfac9d774af5b70335afd17839b98e652 100644 (file)
--- a/sshd.c
+++ b/sshd.c
@@ -56,6 +56,7 @@
 #ifdef HAVE_PATHS_H
 #include <paths.h>
 #endif
+#include <grp.h>
 #include <pwd.h>
 #include <signal.h>
 
This page took 0.135553 seconds and 5 git commands to generate.