diff options
author | 2006-07-12 22:28:51 +0000 | |
---|---|---|
committer | 2006-07-12 22:28:51 +0000 | |
commit | 41779321f1ab195e4e542fe37d41e4c08782a89b (patch) | |
tree | c0230fa0abc8a750837b07168cfab5679782a3c7 /usr.bin/ssh/channels.c | |
parent | Small KNF. (diff) | |
download | wireguard-openbsd-41779321f1ab195e4e542fe37d41e4c08782a89b.tar.xz wireguard-openbsd-41779321f1ab195e4e542fe37d41e4c08782a89b.zip |
move #include <netdb.h> out of includes.h; ok djm@
Diffstat (limited to 'usr.bin/ssh/channels.c')
-rw-r--r-- | usr.bin/ssh/channels.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/channels.c b/usr.bin/ssh/channels.c index 8f5f4995abd..cfb243916f4 100644 --- a/usr.bin/ssh/channels.c +++ b/usr.bin/ssh/channels.c @@ -1,4 +1,4 @@ -/* $OpenBSD: channels.c,v 1.254 2006/07/11 20:07:25 stevesk Exp $ */ +/* $OpenBSD: channels.c,v 1.255 2006/07/12 22:28:51 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -50,6 +50,7 @@ #include <arpa/inet.h> #include <errno.h> +#include <netdb.h> #include <termios.h> #include "ssh.h" |