1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

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]
This commit is contained in:
Simon Tatham 2003-04-12 09:19:09 +00:00
parent 8f94dd3881
commit 09f7a8edbf

View File

@ -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)