mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 20:12: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:
@ -936,7 +936,8 @@ const BackendVtable supdup_backend = {
|
||||
.unthrottle = supdup_unthrottle,
|
||||
.cfg_info = supdup_cfg_info,
|
||||
.id = "supdup",
|
||||
.displayname = "SUPDUP",
|
||||
.displayname_tc = "SUPDUP",
|
||||
.displayname_lc = "SUPDUP", /* proper name, so capitalise it anyway */
|
||||
.protocol = PROT_SUPDUP,
|
||||
.default_port = 0137,
|
||||
.flags = BACKEND_RESIZE_FORBIDDEN | BACKEND_NEEDS_TERMINAL,
|
||||
|
Reference in New Issue
Block a user