summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-10-03 17:46:39 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-10-03 17:46:39 +0000
commit1bae4044577f402f33ae4f06e715832cc479c030 (patch)
treef3a63ba03bb6535d35d9641401754bd9c2bb4193 /sshd.c
parent569f88de0440506347e3c14f954d0aa0e9f18651 (diff)
- stevesk@cvs.openbsd.org 2001/10/02 22:56:09
[sshd.c] #include "channels.h" for channel_set_af()
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sshd.c b/sshd.c
index a1f544846..2a7309816 100644
--- a/sshd.c
+++ b/sshd.c
@@ -40,7 +40,7 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: sshd.c,v 1.205 2001/10/01 21:38:53 markus Exp $"); 43RCSID("$OpenBSD: sshd.c,v 1.206 2001/10/02 22:56:09 stevesk Exp $");
44 44
45#include <openssl/dh.h> 45#include <openssl/dh.h>
46#include <openssl/bn.h> 46#include <openssl/bn.h>
@@ -71,6 +71,7 @@ RCSID("$OpenBSD: sshd.c,v 1.205 2001/10/01 21:38:53 markus Exp $");
71#include "auth.h" 71#include "auth.h"
72#include "misc.h" 72#include "misc.h"
73#include "dispatch.h" 73#include "dispatch.h"
74#include "channels.h"
74 75
75#ifdef LIBWRAP 76#ifdef LIBWRAP
76#include <tcpd.h> 77#include <tcpd.h>