X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=be_none.c;h=688b8dafe32d62aba7f5d8b6ee58c2f15a499061;hb=7acc0a2aa1377ddd575ab635d364b48fd8686fce;hp=a08a938a0a972f86174e7fd04b3def9a91c593cd;hpb=ca90be26a880dc2f3189c9cd2ff0f378280c8d0f;p=PuTTY.git diff --git a/be_none.c b/be_none.c index a08a938a..688b8daf 100644 --- a/be_none.c +++ b/be_none.c @@ -1,17 +1,11 @@ /* - * Linking module for PSCP: list the available backends, but - * without accompanying function suites. Used only for name - * lookups. + * Linking module for programs that do not support selection of backend + * (such as pterm). */ -#include #include #include "putty.h" -struct backend_list backends[] = { - {PROT_SSH, "ssh", NULL}, - {PROT_TELNET, "telnet", NULL}, - {PROT_RLOGIN, "rlogin", NULL}, - {PROT_RAW, "raw", NULL}, - {0, NULL} +Backend *backends[] = { + NULL };