Fix a couple of code paths on which, if fxp_readdir returned an error,
[sgt/putty] / be_all_s.c
CommitLineData
7374c779 1/*
2 * Linking module for PuTTY proper: list the available backends
3 * including ssh, plus the serial backend.
4 */
5
6#include <stdio.h>
7#include "putty.h"
8
9/*
10 * This appname is not strictly in the right place, since Plink
11 * also uses this module. However, Plink doesn't currently use any
12 * of the dialog-box sorts of things that make use of appname, so
13 * it shouldn't do any harm here. I'm trying to avoid having to
14 * have tiny little source modules containing nothing but
15 * declarations of appname, for as long as I can...
16 */
17const char *const appname = "PuTTY";
18
19#ifdef TELNET_DEFAULT
20const int be_default_protocol = PROT_TELNET;
21#else
22const int be_default_protocol = PROT_SSH;
23#endif
24
9e164d82 25Backend *backends[] = {
26 &ssh_backend,
27 &telnet_backend,
28 &rlogin_backend,
29 &raw_backend,
30 &serial_backend,
31 NULL
7374c779 32};