X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/78843a7c937b67b321c0495b79a53915cb45ab7a..b9d7bcadee831e9b59fb785f2464a5fc1897bd1a:/raw.c diff --git a/raw.c b/raw.c index f21e3ca9..e269a7d2 100644 --- a/raw.c +++ b/raw.c @@ -186,6 +186,11 @@ static int raw_ldisc(void *handle, int option) return 0; } +static void raw_provide_ldisc(void *handle, void *ldisc) +{ + /* This is a stub. */ +} + static int raw_exitcode(void *handle) { /* Exit codes are a meaningless concept in the Raw protocol */ @@ -202,6 +207,7 @@ Backend raw_backend = { raw_exitcode, raw_sendok, raw_ldisc, + raw_provide_ldisc, raw_unthrottle, 1 };