X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/86916870d36cb70e7ef0ea760e75a6ae8b2d83a5..eae780a96fb3e9fd06fef2204270d1574ebb3d2a:/unix/pty.c diff --git a/unix/pty.c b/unix/pty.c index 1c213e86..37f50503 100644 --- a/unix/pty.c +++ b/unix/pty.c @@ -519,6 +519,14 @@ static void pty_reconfig(void *handle, Config *cfg) } /* + * Stub routine (never called in pterm + */ +static void pty_free(void *handle) +{ +} + + +/* * Called to send data down the pty. */ static int pty_send(void *handle, char *buf, int len) @@ -624,6 +632,7 @@ static int pty_exitcode(void *handle) Backend pty_backend = { pty_init, + pty_free, pty_reconfig, pty_send, pty_sendbuffer,