Remove a return path from sshcom_write() which was both unreachable
[u/mdw/putty] / be_ssh.c
1 /*
2 * Linking module for programs that are restricted to only using SSH
3 * (pscp and psftp). These do not support selection of backend, but
4 * must still have a backends[] array mentioning SSH because
5 * settings.c will want to consult it during session load.
6 */
7
8 #include <stdio.h>
9 #include "putty.h"
10
11 const int be_default_protocol = PROT_SSH;
12
13 Backend *backends[] = {
14 &ssh_backend,
15 NULL
16 };