summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/channels.c
diff options
context:
space:
mode:
authorstevesk <stevesk@openbsd.org>2006-07-03 17:59:32 +0000
committerstevesk <stevesk@openbsd.org>2006-07-03 17:59:32 +0000
commit90880806e17338741f3268be03356f3456dd3f79 (patch)
tree758640fbfbd05b4f83469e0955870dab019f5b75 /usr.bin/ssh/channels.c
parentbe consistent with temperatures (diff)
downloadwireguard-openbsd-90880806e17338741f3268be03356f3456dd3f79.tar.xz
wireguard-openbsd-90880806e17338741f3268be03356f3456dd3f79.zip
move #include <arpa/inet.h> out of includes.h; old ok djm@
Diffstat (limited to 'usr.bin/ssh/channels.c')
-rw-r--r--usr.bin/ssh/channels.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/ssh/channels.c b/usr.bin/ssh/channels.c
index 1d4a24a473f..a2c6464bba4 100644
--- a/usr.bin/ssh/channels.c
+++ b/usr.bin/ssh/channels.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: channels.c,v 1.250 2006/04/16 00:48:52 djm Exp $ */
+/* $OpenBSD: channels.c,v 1.251 2006/07/03 17:59:32 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -44,6 +44,10 @@
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/un.h>
+#include <sys/socket.h>
+
+#include <netinet/in.h>
+#include <arpa/inet.h>
#include <termios.h>