mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-09-26 11:29:04 +02: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;
|
|
}
|