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 /sshd.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 'sshd.c')
-rw-r--r-- | sshd.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sshd.c,v 1.337 2006/07/12 11:34:58 dtucker Exp $ */ | 1 | /* $OpenBSD: sshd.c,v 1.338 2006/07/12 22:28:52 stevesk Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -54,6 +54,9 @@ | |||
54 | 54 | ||
55 | #include <errno.h> | 55 | #include <errno.h> |
56 | #include <fcntl.h> | 56 | #include <fcntl.h> |
57 | #if defined(HAVE_NETDB_H) | ||
58 | # include <netdb.h> | ||
59 | #endif | ||
57 | #ifdef HAVE_PATHS_H | 60 | #ifdef HAVE_PATHS_H |
58 | #include <paths.h> | 61 | #include <paths.h> |
59 | #endif | 62 | #endif |