]> andersk Git - openssh.git/commitdiff
- (djm) [auth.c loginrec.c] Missing netinet/in.h for loginrec
authordjm <djm>
Sat, 5 Aug 2006 02:54:24 +0000 (02:54 +0000)
committerdjm <djm>
Sat, 5 Aug 2006 02:54:24 +0000 (02:54 +0000)
ChangeLog
auth.c
sshlogin.c

index 145da320ebb08ec5e4b022997db87b720b664c0f..5fa54609a84fa7c8c69d6442eaeb4cf1ba966339 100644 (file)
--- 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
diff --git a/auth.c b/auth.c
index f2aee8fdb084dcdb58a421cb5bb970775c87c178..5a02a43648322d9715643a93b166baaad259bf19 100644 (file)
--- 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>
index fba8a4d24f4fc09fa9e849b3560904824c632890..0059ff8d03937b68eb0f42ff6d8e0329fb2446c4 100644 (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>
This page took 0.221202 seconds and 5 git commands to generate.