summaryrefslogtreecommitdiff
path: root/auth-options.c
diff options
context:
space:
mode:
authordjm <djm>2006-07-24 03:51:51 +0000
committerdjm <djm>2006-07-24 03:51:51 +0000
commit2c8f0bce4bd86eaefb32534541a25bb425eafb28 (patch)
tree7b62f2c991bae8bb9036164f2de2260126da7d83 /auth-options.c
parent24969496a4023e0553168ea012ac11c0bdb31c15 (diff)
downloadopenssh-2c8f0bce4bd86eaefb32534541a25bb425eafb28.tar.gz
- 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.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/auth-options.c b/auth-options.c
index 473fb8bf..0b11151c 100644
--- a/auth-options.c
+++ b/auth-options.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth-options.c,v 1.36 2006/07/06 16:03:53 stevesk Exp $ */
+/* $OpenBSD: auth-options.c,v 1.37 2006/07/12 22:28:51 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -14,6 +14,9 @@
#include <sys/types.h>
+#if defined(HAVE_NETDB_H)
+# include <netdb.h>
+#endif
#include <pwd.h>
#include "xmalloc.h"