summaryrefslogtreecommitdiff
path: root/channels.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-07-10 20:26:27 +1000
committerDamien Miller <djm@mindrot.org>2006-07-10 20:26:27 +1000
commitefc04e70b8261a7be7818772f03974eb38ae6622 (patch)
tree70825f051e20feb77b6903f608bcef9c8a7d5622 /channels.c
parentb757677d02e37da719b92331f23e02acb7079337 (diff)
downloadopenssh-git-efc04e70b8261a7be7818772f03974eb38ae6622.tar.gz
- stevesk@cvs.openbsd.org 2006/07/03 17:59:32
[channels.c includes.h] move #include <arpa/inet.h> out of includes.h; old ok djm@ (portable needed session.c too)
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/channels.c b/channels.c
index 9642a56e..5796a8bb 100644
--- a/channels.c
+++ b/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>