X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/4c472521e531fb420537806e1724c4a7a0041977..d8d6c7e50e1fcf5171ec15f8a3e9bdcd141f0b64:/rlogin.c diff --git a/rlogin.c b/rlogin.c index 97699aea..ba7dd37b 100644 --- a/rlogin.c +++ b/rlogin.c @@ -217,6 +217,12 @@ static int rlogin_ldisc(int option) return 0; } +static int rlogin_exitcode(void) +{ + /* If we ever implement RSH, we'll probably need to do this properly */ + return 0; +} + Backend rlogin_backend = { rlogin_init, rlogin_send, @@ -224,6 +230,7 @@ Backend rlogin_backend = { rlogin_size, rlogin_special, rlogin_socket, + rlogin_exitcode, rlogin_sendok, rlogin_ldisc, rlogin_unthrottle,