blob: 0935154c704ababf244a020e36b9a635bc6ece01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "includes.h"
RCSID("$Id: compat.c,v 1.2 1999/11/24 13:26:22 damien Exp $");
#include "ssh.h"
int compat13 = 0;
void
enable_compat13(void)
{
verbose("Enabling compatibility mode for protocol 1.3");
compat13 = 1;
}
|