X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/78843a7c937b67b321c0495b79a53915cb45ab7a..b9d7bcadee831e9b59fb785f2464a5fc1897bd1a:/unix/pty.c diff --git a/unix/pty.c b/unix/pty.c index 44348a3e..67addceb 100644 --- a/unix/pty.c +++ b/unix/pty.c @@ -589,6 +589,11 @@ static int pty_ldisc(void *handle, int option) return 0; /* neither editing nor echoing */ } +static void pty_provide_ldisc(void *handle, void *ldisc) +{ + /* This is a stub. */ +} + static int pty_exitcode(void *handle) { if (!pty_child_dead) @@ -607,6 +612,7 @@ Backend pty_backend = { pty_exitcode, pty_sendok, pty_ldisc, + pty_provide_ldisc, pty_unthrottle, 1 };