mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
This ought to fix the scp protocol problems
[originally from svn r503]
This commit is contained in:
parent
a4284137a1
commit
41809f16a0
10
be_none.c
10
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},
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user