mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 01:48: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:
parent
8f94dd3881
commit
09f7a8edbf
2
ldisc.c
2
ldisc.c
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
static void c_write(Ldisc ldisc, char *buf, int len)
|
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)
|
static int plen(Ldisc ldisc, unsigned char c)
|
||||||
|
Loading…
Reference in New Issue
Block a user