From: Simon Tatham Date: Sat, 12 Apr 2003 09:19:09 +0000 (+0000) Subject: Fix from yesterday's frontend-handle upheaval: ldisc calls X-Git-Tag: 0.54~229 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=09f7a8edbf7abdb1242bf0d3bc87e85fabb16fea;p=PuTTY.git Fix from yesterday's frontend-handle upheaval: ldisc calls from_backend(), and must now pass its frontend handle rather than its terminal handle. [originally from svn r3106] --- diff --git a/ldisc.c b/ldisc.c index 1febff3d..e5727186 100644 --- a/ldisc.c +++ b/ldisc.c @@ -23,7 +23,7 @@ static void c_write(Ldisc ldisc, char *buf, int len) { - from_backend(ldisc->term, 0, buf, len); + from_backend(ldisc->frontend, 0, buf, len); } static int plen(Ldisc ldisc, unsigned char c)