summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--auth.c2
-rw-r--r--sshlogin.c2
3 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 57c9d022..47069e28 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -89,6 +89,7 @@
- (djm) [auth-pam.c auth.c bufaux.h entropy.c openbsd-compat/port-tun.c]
remove last traces of bufaux.h - it was merged into buffer.h in the big
includes.h commit
+ - (djm) [auth.c loginrec.c] Missing netinet/in.h for loginrec
20060804
- (dtucker) [configure.ac] The "crippled AES" test does not work on recent
@@ -5159,4 +5160,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.4455 2006/08/05 02:49:30 djm Exp $
+$Id: ChangeLog,v 1.4456 2006/08/05 02:54:24 djm Exp $
diff --git a/auth.c b/auth.c
index f2aee8fd..5a02a436 100644
--- a/auth.c
+++ b/auth.c
@@ -29,6 +29,8 @@
#include <sys/stat.h>
#include <sys/param.h>
+#include <netinet/in.h>
+
#include <errno.h>
#ifdef HAVE_PATHS_H
# include <paths.h>
diff --git a/sshlogin.c b/sshlogin.c
index fba8a4d2..0059ff8d 100644
--- a/sshlogin.c
+++ b/sshlogin.c
@@ -45,6 +45,8 @@
#include <sys/param.h>
#include <sys/socket.h>
+#include <netinet/in.h>
+
#include <errno.h>
#include <fcntl.h>
#include <stdarg.h>