X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/28d00fe40d0aac1c65a317f89f030036acd791cb..a4f046e1dc5c6d28ee9bf9fa5a4d1764e361a72a:/unix/pty.c?ds=sidebyside 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 };