From: simon Date: Sat, 12 Apr 2003 09:19:09 +0000 (+0000) Subject: Fix from yesterday's frontend-handle upheaval: ldisc calls X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/39d04c2b69650f2d768f98b2e2462bf9450f4e5f?hp=7d5c3da43bebc28a85e3375767c03b3877248f3f Fix from yesterday's frontend-handle upheaval: ldisc calls from_backend(), and must now pass its frontend handle rather than its terminal handle. git-svn-id: svn://svn.tartarus.org/sgt/putty@3106 cda61777-01e9-0310-a592-d414129be87e --- 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)