X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=be_none.c;h=688b8dafe32d62aba7f5d8b6ee58c2f15a499061;hb=6da1a325cc4d66a47545b638e46275eb93ac1323;hp=8151b3d7ab4616c5e36381a0481eb383d8d7cdab;hpb=e48981def400f4eb170f79294790eb15e6832a76;p=PuTTY.git diff --git a/be_none.c b/be_none.c index 8151b3d7..688b8daf 100644 --- a/be_none.c +++ b/be_none.c @@ -1,23 +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 -#ifndef AUTO_WINSOCK -#ifdef WINSOCK_TWO -#include -#else -#include -#endif -#endif #include #include "putty.h" -struct backend_list backends[] = { - {PROT_SSH, "ssh", NULL}, - {PROT_TELNET, "telnet", NULL}, - {PROT_RAW, "raw", NULL}, - {0, NULL} +Backend *backends[] = { + NULL };