summaryrefslogtreecommitdiff
path: root/channels.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2015-06-30 05:23:25 +0000
committerDamien Miller <djm@mindrot.org>2015-06-30 16:12:20 +1000
commitf715afebe735d61df3fd30ad72d9ac1c8bd3b5f2 (patch)
tree237fcebc29643134bb46452fd27f9685b6aa86c0 /channels.c
parent52fb6b9b034fcfd24bf88cc7be313e9c31de9889 (diff)
upstream commit
Fix math error in remote window calculations that causes eventual stalls for datagram channels. Reported by Georg Wicherski, ok markus@ Upstream-ID: be54059d11bf64e0d85061f7257f53067842e2ab
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels.c b/channels.c
index 45e1f9fcc..8069cf1f9 100644
--- a/channels.c
+++ b/channels.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: channels.c,v 1.344 2015/06/05 15:13:13 millert Exp $ */ 1/* $OpenBSD: channels.c,v 1.345 2015/06/30 05:23:25 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -2270,7 +2270,7 @@ channel_output_poll(void)
2270 packet_put_int(c->remote_id); 2270 packet_put_int(c->remote_id);
2271 packet_put_string(data, dlen); 2271 packet_put_string(data, dlen);
2272 packet_send(); 2272 packet_send();
2273 c->remote_window -= dlen + 4; 2273 c->remote_window -= dlen;
2274 free(data); 2274 free(data);
2275 } 2275 }
2276 continue; 2276 continue;