diff options
author | 2006-07-12 22:28:51 +0000 | |
---|---|---|
committer | 2006-07-12 22:28:51 +0000 | |
commit | 41779321f1ab195e4e542fe37d41e4c08782a89b (patch) | |
tree | c0230fa0abc8a750837b07168cfab5679782a3c7 /usr.bin/ssh/ssh-keyscan.c | |
parent | Small KNF. (diff) | |
download | wireguard-openbsd-41779321f1ab195e4e542fe37d41e4c08782a89b.tar.xz wireguard-openbsd-41779321f1ab195e4e542fe37d41e4c08782a89b.zip |
move #include <netdb.h> out of includes.h; ok djm@
Diffstat (limited to 'usr.bin/ssh/ssh-keyscan.c')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c index a6216695ce7..57ad7ee53c5 100644 --- a/usr.bin/ssh/ssh-keyscan.c +++ b/usr.bin/ssh/ssh-keyscan.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keyscan.c,v 1.66 2006/07/10 16:37:36 stevesk Exp $ */ +/* $OpenBSD: ssh-keyscan.c,v 1.67 2006/07/12 22:28:52 stevesk Exp $ */ /* * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. * @@ -15,6 +15,7 @@ #include <sys/resource.h> #include <errno.h> +#include <netdb.h> #include <setjmp.h> #include <stdarg.h> |