]> andersk Git - openssh.git/commitdiff
- (djm) [includes.h monitor.c openbsd-compat/bindresvport.c]
authordjm <djm>
Fri, 1 Sep 2006 05:48:19 +0000 (05:48 +0000)
committerdjm <djm>
Fri, 1 Sep 2006 05:48:19 +0000 (05:48 +0000)
   [openbsd-compat/rresvport.c] Some more headers: netinet/in.h
   sys/socket.h and unistd.h in various places

ChangeLog
includes.h
monitor.c
openbsd-compat/bindresvport.c
openbsd-compat/rresvport.c

index 750eaed54595e83ce284ef0edfd494a7ae52c002..a0a6417cf52333ca261a9a65e8dd7cf7925db6ae 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,12 +8,15 @@
    [md5crypt.c monitor.c monitor_wrap.c readconf.c rsa.c]
    [scard-opensc.c scard.c session.c ssh-add.c ssh-agent.c ssh-dss.c]
    [ssh-keygen.c ssh-keysign.c ssh-rsa.c ssh.c sshconnect.c]
-   [sshconnect1.c sshconnect2.c sshd.c rc4.diff]
+   [sshconnect1.c sshconnect2.c sshd.c]
    [openbsd-compat/bsd-cray.c openbsd-compat/port-aix.c]
    [openbsd-compat/port-linux.c openbsd-compat/port-solaris.c]
    [openbsd-compat/port-uw.c]
    Lots of headers for SCO OSR6, mainly adding stdarg.h for log.h;
    compile problems reported by rac AT tenzing.org
+ - (djm) [includes.h monitor.c openbsd-compat/bindresvport.c]
+   [openbsd-compat/rresvport.c] Some more headers: netinet/in.h 
+   sys/socket.h and unistd.h in various places
 
 20060831
  - (djm) [CREDITS LICENCE Makefile.in auth.c configure.ac includes.h ]
index 03665a3d3751429c6598271965b8f97a930504c9..2101f13c9e299ab07c35e5f8bcdb67e5eb4f489c 100644 (file)
@@ -21,6 +21,7 @@
 #define _GNU_SOURCE /* activate extra prototypes for glibc */
 
 #include <sys/types.h>
+#include <sys/socket.h> /* For CMSG_* */
 
 #ifdef HAVE_LIMITS_H
 # include <limits.h> /* For PATH_MAX */
 #include <sys/ptms.h>  /* for grantpt() and friends */
 #endif
 
+#include <netinet/in.h>
 #include <netinet/in_systm.h> /* For typedefs */
 #ifdef HAVE_RPC_TYPES_H
 # include <rpc/types.h> /* For INADDR_LOOPBACK */
index b3ccde0176082c11d31c4ac178fe7cb47790088b..364bd23168537dd63a3f633c4a60fd1e3f68eea7 100644 (file)
--- a/monitor.c
+++ b/monitor.c
@@ -43,6 +43,7 @@
 #include <stdarg.h>
 #include <stdlib.h>
 #include <string.h>
+#include <unistd.h>
 
 #ifdef SKEY
 #include <skey.h>
index ef0eff3b61bc0b57209bac2118db67046609eb45..e8fb83f23d7af1a3e9278f0c15376ed3c9e7832f 100644 (file)
 #include "includes.h"
 
 #ifndef HAVE_BINDRESVPORT_SA
+#include <sys/types.h>
+#include <sys/socket.h>
 
-#include "includes.h"
+#include <netinet/in.h>
 
 #include <errno.h>
 #include <string.h>
index 15790e8520364fc1b363f7dc4f1d7a689ecf417f..17e66ca596b81cbcb25d04394cc47424717a6e78 100644 (file)
 
 #ifndef HAVE_RRESVPORT_AF
 
+#include <sys/types.h>
+#include <sys/socket.h>
+
+#include <netinet/in.h>
+
 #include <errno.h>
 #include <stdlib.h>
 #include <string.h>
This page took 0.172148 seconds and 5 git commands to generate.