summaryrefslogtreecommitdiff
path: root/compat.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-04-16 11:18:38 +1000
committerDamien Miller <djm@mindrot.org>2000-04-16 11:18:38 +1000
commit4af51306d9a51459a5bef922df1037f876ae51fe (patch)
tree09ecfc215fce82345a3259f8a0f384b9a67906f0 /compat.c
parent5d1705ecf9bd3216dc99a84242bcdf2e7297d307 (diff)
- OpenBSD CVS updates.
[ssh.1 ssh.c] - ssh -2 [auth.c channels.c clientloop.c packet.c packet.h serverloop.c] [session.c sshconnect.c] - check payload for (illegal) extra data [ALL] - whitespace cleanup
Diffstat (limited to 'compat.c')
-rw-r--r--compat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/compat.c b/compat.c
index d56e3e81d..4673e3fbc 100644
--- a/compat.c
+++ b/compat.c
@@ -28,7 +28,7 @@
28 */ 28 */
29 29
30#include "includes.h" 30#include "includes.h"
31RCSID("$Id: compat.c,v 1.7 2000/04/12 10:17:39 damien Exp $"); 31RCSID("$Id: compat.c,v 1.8 2000/04/16 01:18:42 damien Exp $");
32 32
33#include "ssh.h" 33#include "ssh.h"
34#include "packet.h" 34#include "packet.h"
@@ -39,14 +39,14 @@ int compat13 = 0;
39int compat20 = 0; 39int compat20 = 0;
40int datafellows = 0; 40int datafellows = 0;
41 41
42void 42void
43enable_compat20(void) 43enable_compat20(void)
44{ 44{
45 verbose("Enabling compatibility mode for protocol 2.0"); 45 verbose("Enabling compatibility mode for protocol 2.0");
46 compat20 = 1; 46 compat20 = 1;
47 packet_set_ssh2_format(); 47 packet_set_ssh2_format();
48} 48}
49void 49void
50enable_compat13(void) 50enable_compat13(void)
51{ 51{
52 verbose("Enabling compatibility mode for protocol 1.3"); 52 verbose("Enabling compatibility mode for protocol 1.3");