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)
- 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 9642a56ee..5796a8bb9 100644
--- a/channels.c
+++ b/channels.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: channels.c,v 1.250 2006/04/16 00:48:52 djm Exp $ */ 1/* $OpenBSD: channels.c,v 1.251 2006/07/03 17:59:32 stevesk Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -44,6 +44,10 @@
44#include <sys/ioctl.h> 44#include <sys/ioctl.h>
45#include <sys/types.h> 45#include <sys/types.h>
46#include <sys/un.h> 46#include <sys/un.h>
47#include <sys/socket.h>
48
49#include <netinet/in.h>
50#include <arpa/inet.h>
47 51
48#include <termios.h> 52#include <termios.h>
49 53