]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - unix/pty.c
Loose end from r5031: the Kex panel should only be displayed in
[PuTTY.git] / unix / pty.c
index bef9f2fab429a5b60f8f09ec02b2e99f40949e38..d99d4e505ce72e6e6c3f6c5c727c5ba3bea3e407 100644 (file)
@@ -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
 };