Fix a couple of signedness compiler warnings, presumably due to me
[u/mdw/putty] / be_none.c
CommitLineData
89ee5268 1/*
05a6aa4f 2 * Linking module for PSCP: list the available backends, but
3 * without accompanying function suites. Used only for name
4 * lookups.
89ee5268 5 */
6
89ee5268 7#include <stdio.h>
8#include "putty.h"
9
10struct backend_list backends[] = {
05a6aa4f 11 {PROT_SSH, "ssh", NULL},
12 {PROT_TELNET, "telnet", NULL},
c91409da 13 {PROT_RLOGIN, "rlogin", NULL},
05a6aa4f 14 {PROT_RAW, "raw", NULL},
84978e82 15 {0, NULL}
89ee5268 16};