]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
This ought to fix the scp protocol problems
authorSimon Tatham <anakin@pobox.com>
Thu, 22 Jun 2000 08:51:51 +0000 (08:51 +0000)
committerSimon Tatham <anakin@pobox.com>
Thu, 22 Jun 2000 08:51:51 +0000 (08:51 +0000)
[originally from svn r503]

be_none.c

index 0ec3a7933fb9d60f45ecc4ba2911db43cc982dfa..f729e25d10b906681aa16132d5127a8591c544a8 100644 (file)
--- 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 <windows.h>
@@ -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},
 };