From 39d04c2b69650f2d768f98b2e2462bf9450f4e5f Mon Sep 17 00:00:00 2001 From: simon Date: Sat, 12 Apr 2003 09:19:09 +0000 Subject: [PATCH] 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 --- ldisc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.11.0