]> andersk Git - openssh.git/commitdiff
- (dtucker) Bug #602: move #include of netdb.h to after in.h (fixes compiler
authordtucker <dtucker>
Sun, 29 Jun 2003 11:23:37 +0000 (11:23 +0000)
committerdtucker <dtucker>
Sun, 29 Jun 2003 11:23:37 +0000 (11:23 +0000)
   warnings on Solaris 2.5.1).

ChangeLog
includes.h

index b3c551c519c778f8aa321dc2db70784595a74f7a..08ac6ea5471ff7a38058a5275bdde768d7d20555 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20030629
+ - (dtucker) Bug #602: move #include of netdb.h to after in.h (fixes compiler
+   warnings on Solaris 2.5.1).
+   
 20030628
  - (djm) Bug #591: use PKCS#15 private key label as a comment in case 
    of OpenSC. Report and patch from larsch@trustcenter.de
index c30c31577e783b50d8428a7b544c556f5d038dbc..033cd91fae6df2708a54d312e9e8da52131a5583 100644 (file)
@@ -50,9 +50,6 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
 #ifdef HAVE_NETGROUP_H
 # include <netgroup.h>
 #endif
-#if defined(HAVE_NETDB_H)
-# include <netdb.h>
-#endif
 #ifdef HAVE_ENDIAN_H
 # include <endian.h>
 #endif
@@ -143,6 +140,9 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
 #include <netinet/ip.h> /* For IPTOS macros */
 #include <netinet/tcp.h>
 #include <arpa/inet.h>
+#if defined(HAVE_NETDB_H)
+# include <netdb.h>
+#endif
 #ifdef HAVE_RPC_TYPES_H
 # include <rpc/types.h> /* For INADDR_LOOPBACK */
 #endif
This page took 0.041394 seconds and 5 git commands to generate.