summaryrefslogtreecommitdiff
path: root/channels.c
diff options
context:
space:
mode:
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/channels.c b/channels.c
index 3710b2fd4..ea395293a 100644
--- a/channels.c
+++ b/channels.c
@@ -17,13 +17,12 @@
17 */ 17 */
18 18
19#include "includes.h" 19#include "includes.h"
20RCSID("$OpenBSD: channels.c,v 1.63 2000/06/25 20:17:57 provos Exp $"); 20RCSID("$OpenBSD: channels.c,v 1.64 2000/07/16 08:27:21 markus Exp $");
21 21
22#include "ssh.h" 22#include "ssh.h"
23#include "packet.h" 23#include "packet.h"
24#include "xmalloc.h" 24#include "xmalloc.h"
25#include "buffer.h" 25#include "buffer.h"
26#include "authfd.h"
27#include "uidswap.h" 26#include "uidswap.h"
28#include "readconf.h" 27#include "readconf.h"
29#include "servconf.h" 28#include "servconf.h"
@@ -34,6 +33,11 @@ RCSID("$OpenBSD: channels.c,v 1.63 2000/06/25 20:17:57 provos Exp $");
34 33
35#include "ssh2.h" 34#include "ssh2.h"
36 35
36#include <openssl/rsa.h>
37#include <openssl/dsa.h>
38#include "key.h"
39#include "authfd.h"
40
37/* Maximum number of fake X11 displays to try. */ 41/* Maximum number of fake X11 displays to try. */
38#define MAX_DISPLAYS 1000 42#define MAX_DISPLAYS 1000
39 43