X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/aa63ab7e596756bec878633c99b4630421296898..f89c329410c18fe1f09d843747fad77babb9f89c:/unix/pty.c diff --git a/unix/pty.c b/unix/pty.c index bef9f2fa..d99d4e50 100644 --- a/unix/pty.c +++ b/unix/pty.c @@ -804,6 +804,11 @@ static int pty_exitcode(void *handle) return pty_exit_code; } +static int pty_cfg_info(void *handle) +{ + return 0; +} + Backend pty_backend = { pty_init, pty_free, @@ -820,5 +825,6 @@ Backend pty_backend = { pty_provide_ldisc, pty_provide_logctx, pty_unthrottle, + pty_cfg_info, 1 };