diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 1999-11-23 22:25:57 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 1999-11-23 22:25:57 +0000 |
commit | 5ca3ea35d495a05b1f8e3de30ab8e5f9e71845ec (patch) | |
tree | ae22941656d7fb2dfb68fde85e2e8f68fef73b29 /usr.bin/ssh/compat.c | |
parent | 0d292d99c753a8b6641ad11989bd9861de4e1156 (diff) |
KNF part 1
Diffstat (limited to 'usr.bin/ssh/compat.c')
-rw-r--r-- | usr.bin/ssh/compat.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/usr.bin/ssh/compat.c b/usr.bin/ssh/compat.c index a0d27a5e3a4..1e884597949 100644 --- a/usr.bin/ssh/compat.c +++ b/usr.bin/ssh/compat.c @@ -1,10 +1,13 @@ #include "includes.h" -RCSID("$Id: compat.c,v 1.3 1999/11/22 21:02:38 markus Exp $"); +RCSID("$Id: compat.c,v 1.4 1999/11/23 22:25:53 markus Exp $"); #include "ssh.h" -int compat13=0; -void enable_compat13(void){ +int compat13 = 0; + +void +enable_compat13(void) +{ verbose("Enabling compatibility mode for protocol 1.3"); - compat13=1; + compat13 = 1; } |