mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-01 19:42:48 -05:00
Lowercase version of BackendVtable's displayname.
The current 'displayname' field is designed for presenting in the config UI, so it starts with a capital letter even when it's not a proper noun. If I want to name the backend in the middle of a sentence, I'll need a version that starts with lowercase where appropriate. The old field is renamed displayname_tc, to avoid ambiguity.
This commit is contained in:
@ -1082,7 +1082,8 @@ const BackendVtable telnet_backend = {
|
||||
.unthrottle = telnet_unthrottle,
|
||||
.cfg_info = telnet_cfg_info,
|
||||
.id = "telnet",
|
||||
.displayname = "Telnet",
|
||||
.displayname_tc = "Telnet",
|
||||
.displayname_lc = "Telnet", /* proper name, so capitalise it anyway */
|
||||
.protocol = PROT_TELNET,
|
||||
.default_port = 23,
|
||||
};
|
||||
|
Reference in New Issue
Block a user