]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - raw.c
Loose end from r5031: the Kex panel should only be displayed in
[PuTTY.git] / raw.c
diff --git a/raw.c b/raw.c
index 8b1b1e9b15e9e843e9854f775c95d358f6ab8ab1..631320c0f8f20376e82f5b955d9a79af552c9a42 100644 (file)
--- a/raw.c
+++ b/raw.c
@@ -236,6 +236,14 @@ static int raw_exitcode(void *handle)
         return 0;
 }
 
+/*
+ * cfg_info for Raw does nothing at all.
+ */
+static int raw_cfg_info(void *handle)
+{
+    return 0;
+}
+
 Backend raw_backend = {
     raw_init,
     raw_free,
@@ -252,5 +260,6 @@ Backend raw_backend = {
     raw_provide_ldisc,
     raw_provide_logctx,
     raw_unthrottle,
+    raw_cfg_info,
     1
 };