diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-05 02:42:10 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-05 02:42:10 +0000 |
commit | 838a547bc72b1180e877029abc5781e996a46704 (patch) | |
tree | d355a50d85e21e99f763c993e515d228542c7665 /usr.bin/ssh/serverloop.c | |
parent | 9772abdd787e434bf5b65d9da0b30b172394b3a6 (diff) |
move #include <netinet/in.h> out of includes.h; ok deraadt@
Diffstat (limited to 'usr.bin/ssh/serverloop.c')
-rw-r--r-- | usr.bin/ssh/serverloop.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c index c16c126e32c..e966aa4fe2e 100644 --- a/usr.bin/ssh/serverloop.c +++ b/usr.bin/ssh/serverloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: serverloop.c,v 1.135 2006/03/25 18:30:55 deraadt Exp $ */ +/* $OpenBSD: serverloop.c,v 1.136 2006/07/05 02:42:09 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -39,6 +39,9 @@ #include <sys/types.h> #include <sys/wait.h> +#include <sys/socket.h> + +#include <netinet/in.h> #include <signal.h> #include <termios.h> |