summaryrefslogtreecommitdiff
path: root/compat.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-10-27 13:42:43 +1000
committerDamien Miller <djm@mindrot.org>1999-10-27 13:42:43 +1000
commitd4a8b7e34dd619a4debf9a206c81db26d1402ea6 (patch)
treea47d770a2f790f40d18b0982d4e55fa7cfb1fa3b /compat.c
Initial revision
Diffstat (limited to 'compat.c')
-rw-r--r--compat.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/compat.c b/compat.c
new file mode 100644
index 000000000..4974b1cba
--- /dev/null
+++ b/compat.c
@@ -0,0 +1,10 @@
1#include "includes.h"
2RCSID("$Id: compat.c,v 1.1 1999/10/27 03:42:44 damien Exp $");
3
4#include "ssh.h"
5
6int compat13=0;
7void enable_compat13(void){
8 log("Enabling compatibility mode for protocol 1.3");
9 compat13=1;
10}