1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-06 22:12:47 -05:00

Give BackendVtable separate id and displayname fields.

The previous 'name' field was awkwardly serving both purposes: it was
a machine-readable identifier for the backend used in the saved
session format, and it was also used in error messages when Plink
wanted to complain that it didn't support a particular backend. Now
there are two separate name fields for those purposes.
This commit is contained in:
Simon Tatham
2020-02-16 11:34:40 +00:00
parent 37f26089fa
commit 9482f33739
12 changed files with 20 additions and 16 deletions

2
ssh.c
View File

@ -1190,7 +1190,7 @@ const struct BackendVtable ssh_backend = {
ssh_unthrottle,
ssh_cfg_info,
ssh_test_for_upstream,
"ssh",
"ssh", "SSH",
PROT_SSH,
22
};