From 09f7a8edbf7abdb1242bf0d3bc87e85fabb16fea Mon Sep 17 00:00:00 2001 From: Simon Tatham 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. [originally from svn r3106] --- 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)