1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-25 01:02:24 +00:00

This ought to fix the scp protocol problems

[originally from svn r503]
This commit is contained in:
Simon Tatham 2000-06-22 08:51:51 +00:00
parent a4284137a1
commit 41809f16a0

View File

@ -1,7 +1,7 @@
/* /*
* Linking module for PSCP: list no available backends. This is * Linking module for PSCP: list the available backends, but
* only present to satisfy linker requirements. I should really * without accompanying function suites. Used only for name
* untangle the whole lot a bit better. * lookups.
*/ */
#include <windows.h> #include <windows.h>
@ -9,5 +9,7 @@
#include "putty.h" #include "putty.h"
struct backend_list backends[] = { struct backend_list backends[] = {
{0, NULL} {PROT_SSH, "ssh", NULL},
{PROT_TELNET, "telnet", NULL},
{PROT_RAW, "raw", NULL},
}; };