blob: a0d27a5e3a46e34a4c12024464b21b5e4a61d8bf (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "includes.h"
RCSID("$Id: compat.c,v 1.3 1999/11/22 21:02:38 markus Exp $");
#include "ssh.h"
int compat13=0;
void enable_compat13(void){
verbose("Enabling compatibility mode for protocol 1.3");
compat13=1;
}
|