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 /auth-options.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 'auth-options.c')
-rw-r--r-- | auth-options.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/auth-options.c b/auth-options.c index 473fb8bf7..0b11151cf 100644 --- a/auth-options.c +++ b/auth-options.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: auth-options.c,v 1.36 2006/07/06 16:03:53 stevesk Exp $ */ | 1 | /* $OpenBSD: auth-options.c,v 1.37 2006/07/12 22:28:51 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 |
@@ -14,6 +14,9 @@ | |||
14 | 14 | ||
15 | #include <sys/types.h> | 15 | #include <sys/types.h> |
16 | 16 | ||
17 | #if defined(HAVE_NETDB_H) | ||
18 | # include <netdb.h> | ||
19 | #endif | ||
17 | #include <pwd.h> | 20 | #include <pwd.h> |
18 | 21 | ||
19 | #include "xmalloc.h" | 22 | #include "xmalloc.h" |