From 05a6aa4fb69a1ff393d8e13b5a6e6a6211f50277 Mon Sep 17 00:00:00 2001 From: simon Date: Thu, 22 Jun 2000 08:51:51 +0000 Subject: [PATCH] This ought to fix the scp protocol problems git-svn-id: svn://svn.tartarus.org/sgt/putty@503 cda61777-01e9-0310-a592-d414129be87e --- be_none.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/be_none.c b/be_none.c index 0ec3a793..f729e25d 100644 --- a/be_none.c +++ b/be_none.c @@ -1,7 +1,7 @@ /* - * Linking module for PSCP: list no available backends. This is - * only present to satisfy linker requirements. I should really - * untangle the whole lot a bit better. + * Linking module for PSCP: list the available backends, but + * without accompanying function suites. Used only for name + * lookups. */ #include @@ -9,5 +9,7 @@ #include "putty.h" struct backend_list backends[] = { - {0, NULL} + {PROT_SSH, "ssh", NULL}, + {PROT_TELNET, "telnet", NULL}, + {PROT_RAW, "raw", NULL}, }; -- 2.11.0