X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=be_none.c;h=6ec037ac06753543778b7ea022b480ab531bc539;hb=46c00b0f381f48a9992e43e014e104015952e9da;hp=879a20c5052285efcc88aab7047c4cbf16d6561a;hpb=90e7bf4228fa74fda1c65cb2597c9d964329f702;p=PuTTY.git diff --git a/be_none.c b/be_none.c index 879a20c5..6ec037ac 100644 --- a/be_none.c +++ b/be_none.c @@ -1,16 +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 pscp or pterm). */ #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 };