X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=be_none.c;h=688b8dafe32d62aba7f5d8b6ee58c2f15a499061;hb=3f29d939ee6d20789eff0fb779592f64fc4bf892;hp=879a20c5052285efcc88aab7047c4cbf16d6561a;hpb=6d0e9b205d15b2615ae2b95784e4316d4490f86b;p=PuTTY.git diff --git a/be_none.c b/be_none.c index 879a20c5..688b8daf 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 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 };