summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-08-05 12:54:24 +1000
committerDamien Miller <djm@mindrot.org>2006-08-05 12:54:24 +1000
commit36cbe41ceb9aeccbbd11bdf49588ddc8136a8f4f (patch)
tree37fc8c4187eda02984f15638e7adb3fb31b1f830
parent4cbfe8ebebb1fb345bddab629768ad95885846d6 (diff)
- (djm) [auth.c loginrec.c] Missing netinet/in.h for loginrec
-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 57c9d0225..47069e286 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -89,6 +89,7 @@
89 - (djm) [auth-pam.c auth.c bufaux.h entropy.c openbsd-compat/port-tun.c] 89 - (djm) [auth-pam.c auth.c bufaux.h entropy.c openbsd-compat/port-tun.c]
90 remove last traces of bufaux.h - it was merged into buffer.h in the big 90 remove last traces of bufaux.h - it was merged into buffer.h in the big
91 includes.h commit 91 includes.h commit
92 - (djm) [auth.c loginrec.c] Missing netinet/in.h for loginrec
92 93
9320060804 9420060804
94 - (dtucker) [configure.ac] The "crippled AES" test does not work on recent 95 - (dtucker) [configure.ac] The "crippled AES" test does not work on recent
@@ -5159,4 +5160,4 @@
5159 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 5160 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
5160 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 5161 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
5161 5162
5162$Id: ChangeLog,v 1.4455 2006/08/05 02:49:30 djm Exp $ 5163$Id: ChangeLog,v 1.4456 2006/08/05 02:54:24 djm Exp $
diff --git a/auth.c b/auth.c
index f2aee8fdb..5a02a4364 100644
--- a/auth.c
+++ b/auth.c
@@ -29,6 +29,8 @@
29#include <sys/stat.h> 29#include <sys/stat.h>
30#include <sys/param.h> 30#include <sys/param.h>
31 31
32#include <netinet/in.h>
33
32#include <errno.h> 34#include <errno.h>
33#ifdef HAVE_PATHS_H 35#ifdef HAVE_PATHS_H
34# include <paths.h> 36# include <paths.h>
diff --git a/sshlogin.c b/sshlogin.c
index fba8a4d24..0059ff8d0 100644
--- a/sshlogin.c
+++ b/sshlogin.c
@@ -45,6 +45,8 @@
45#include <sys/param.h> 45#include <sys/param.h>
46#include <sys/socket.h> 46#include <sys/socket.h>
47 47
48#include <netinet/in.h>
49
48#include <errno.h> 50#include <errno.h>
49#include <fcntl.h> 51#include <fcntl.h>
50#include <stdarg.h> 52#include <stdarg.h>