X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/514702987c9252fcb0ab98882a6603b3bd0505ce..a4f046e1dc5c6d28ee9bf9fa5a4d1764e361a72a:/rlogin.c diff --git a/rlogin.c b/rlogin.c index 52cf356c..61f4afb8 100644 --- a/rlogin.c +++ b/rlogin.c @@ -250,6 +250,11 @@ static int rlogin_ldisc(void *handle, int option) return 0; } +static void rlogin_provide_ldisc(void *handle, void *ldisc) +{ + /* This is a stub. */ +} + static int rlogin_exitcode(void *handle) { Rlogin rlogin = (Rlogin) handle; @@ -267,6 +272,7 @@ Backend rlogin_backend = { rlogin_exitcode, rlogin_sendok, rlogin_ldisc, + rlogin_provide_ldisc, rlogin_unthrottle, 1 };