mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-24 02:02:10 +08:00
11 lines
217 B
C
11 lines
217 B
C
#include "includes.h"
|
|
RCSID("$Id: compat.c,v 1.1 1999/10/27 03:42:44 damien Exp $");
|
|
|
|
#include "ssh.h"
|
|
|
|
int compat13=0;
|
|
void enable_compat13(void){
|
|
log("Enabling compatibility mode for protocol 1.3");
|
|
compat13=1;
|
|
}
|