diff options
author | mouring <mouring> | 2001-06-12 00:12:56 +0000 |
---|---|---|
committer | mouring <mouring> | 2001-06-12 00:12:56 +0000 |
commit | ca0745a92466d97dedfdd6fad01830cb9a440866 (patch) | |
tree | b3d01accadec6e5ec03c69162dede8a237c0a2fa /dispatch.c | |
parent | 5bf775daed5a01a1bba4d325aa5ddbfb06179730 (diff) | |
download | openssh-ca0745a92466d97dedfdd6fad01830cb9a440866.tar.gz |
- markus@cvs.openbsd.org 2001/06/10 11:29:20
[dispatch.c]
we support rekeying
protocol errors are fatal.
Diffstat (limited to 'dispatch.c')
-rw-r--r-- | dispatch.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -22,7 +22,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: dispatch.c,v 1.10 2001/02/18 18:33:53 markus Exp $"); +RCSID("$OpenBSD: dispatch.c,v 1.11 2001/06/10 11:29:20 markus Exp $"); #include "ssh1.h" #include "ssh2.h" @@ -39,9 +39,7 @@ dispatch_fn *dispatch[DISPATCH_MAX]; void dispatch_protocol_error(int type, int plen, void *ctxt) { - error("Hm, dispatch protocol error: type %d plen %d", type, plen); - if (compat20 && type == SSH2_MSG_KEXINIT) - fatal("dispatch_protocol_error: rekeying is not supported"); + fatal("dispatch_protocol_error: type %d plen %d", type, plen); } void dispatch_init(dispatch_fn *dflt) |