diff options
author | 2006-07-08 21:47:12 +0000 | |
---|---|---|
committer | 2006-07-08 21:47:12 +0000 | |
commit | 3e070fac36aa8ea631ceedd0e261343d5d61afe0 (patch) | |
tree | 4eeca60f3d3a739918ff45af04f91eab63f6477b /usr.bin/ssh/ssh-keyscan.c | |
parent | Rename VTON() to VTOU() (diff) | |
download | wireguard-openbsd-3e070fac36aa8ea631ceedd0e261343d5d61afe0.tar.xz wireguard-openbsd-3e070fac36aa8ea631ceedd0e261343d5d61afe0.zip |
move #include <sys/socket.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/ssh-keyscan.c')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c index a26689cb706..af587402499 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.64 2006/03/25 13:17:02 djm Exp $ */ +/* $OpenBSD: ssh-keyscan.c,v 1.65 2006/07/08 21:47:12 stevesk Exp $ */ /* * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. * @@ -9,6 +9,8 @@ #include "includes.h" +#include <sys/types.h> +#include <sys/socket.h> #include <sys/queue.h> #include <sys/resource.h> |