From dff5099f13e2e679b93d3cfe7073c9cd92b19b06 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Tue, 22 Jan 2002 23:16:32 +1100 Subject: - markus@cvs.openbsd.org 2001/12/28 14:50:54 [auth1.c auth-rsa.c channels.c dispatch.c kex.c kexdh.c kexgex.c packet.c packet.h serverloop.c session.c ssh.c sshconnect1.c sshconnect2.c sshd.c] packet_read* no longer return the packet length, since it's not used. --- dispatch.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'dispatch.c') diff --git a/dispatch.c b/dispatch.c index 036c0aaa5..871fa24d2 100644 --- a/dispatch.c +++ b/dispatch.c @@ -22,7 +22,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: dispatch.c,v 1.12 2001/12/20 22:50:24 djm Exp $"); +RCSID("$OpenBSD: dispatch.c,v 1.13 2001/12/28 14:50:54 markus Exp $"); #include "ssh1.h" #include "ssh2.h" @@ -58,19 +58,18 @@ void dispatch_run(int mode, int *done, void *ctxt) { for (;;) { - int plen; int type; u_int32_t seqnr; if (mode == DISPATCH_BLOCK) { - type = packet_read_seqnr(&plen, &seqnr); + type = packet_read_seqnr(&seqnr); } else { - type = packet_read_poll_seqnr(&plen, &seqnr); + type = packet_read_poll_seqnr(&seqnr); if (type == SSH_MSG_NONE) return; } if (type > 0 && type < DISPATCH_MAX && dispatch[type] != NULL) - (*dispatch[type])(type, plen, seqnr, ctxt); + (*dispatch[type])(type, 1234, seqnr, ctxt); else packet_disconnect("protocol error: rcvd type %d", type); if (done != NULL && *done) -- cgit v1.2.3