diff options
author | Damien Miller <djm@mindrot.org> | 2006-07-24 05:51:51 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-07-24 05:51:51 +0200 |
commit | be43ebf97579d13e108256c6440cb22a08f12ebc (patch) | |
tree | db201b644de50d60224d90d082125f37d47b5988 /dns.c | |
parent | - jmc@cvs.openbsd.org 2006/07/12 13:39:55 (diff) | |
download | openssh-be43ebf97579d13e108256c6440cb22a08f12ebc.tar.xz openssh-be43ebf97579d13e108256c6440cb22a08f12ebc.zip |
- 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 @@ #include <sys/types.h> #include <sys/socket.h> -#include <netdb.h> +#if defined(HAVE_NETDB_H) +# include <netdb.h> +#endif #include "xmalloc.h" #include "key.h" |