X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=be_none.c;h=a08a938a0a972f86174e7fd04b3def9a91c593cd;hb=9c5951ed35cf9019bf17685b4356212eae1a63b3;hp=0ec3a7933fb9d60f45ecc4ba2911db43cc982dfa;hpb=96dbf9c6e6fe39adfe27a276e4a6360b827d8ba1;p=PuTTY.git diff --git a/be_none.c b/be_none.c index 0ec3a793..a08a938a 100644 --- a/be_none.c +++ b/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 @@ -9,5 +9,9 @@ #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} };