diff options
author | Damien Miller <djm@mindrot.org> | 2006-07-24 13:51:51 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-07-24 13:51:51 +1000 |
commit | be43ebf97579d13e108256c6440cb22a08f12ebc (patch) | |
tree | db201b644de50d60224d90d082125f37d47b5988 /dns.c | |
parent | d04f357ac24a6d40176cd53e58d0256b5130d98e (diff) |
- stevesk@cvs.openbsd.org 2006/07/12 22:28:52
[auth-options.c canohost.c channels.c includes.h readconf.c servconf.c ssh-keyscan.c ssh.c sshconnect.c sshd.c]
move #include <netdb.h> out of includes.h; ok djm@
Diffstat (limited to 'dns.c')
-rw-r--r-- | dns.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -30,7 +30,9 @@ | |||
30 | #include <sys/types.h> | 30 | #include <sys/types.h> |
31 | #include <sys/socket.h> | 31 | #include <sys/socket.h> |
32 | 32 | ||
33 | #include <netdb.h> | 33 | #if defined(HAVE_NETDB_H) |
34 | # include <netdb.h> | ||
35 | #endif | ||
34 | 36 | ||
35 | #include "xmalloc.h" | 37 | #include "xmalloc.h" |
36 | #include "key.h" | 38 | #include "key.h" |