- (djm) [auth.c loginrec.c] Missing netinet/in.h for loginrec

This commit is contained in:
Damien Miller 2006-08-05 12:54:24 +10:00
parent 4cbfe8ebeb
commit 36cbe41ceb
3 changed files with 6 additions and 1 deletions

View File

@ -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 $

2
auth.c
View File

@ -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>

View File

@ -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>