mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-03 04:22:47 -05:00
Name vtable structure types more consistently.
Now they're all called FooVtable, instead of a mixture of that and Foo_vtable.
This commit is contained in:
@ -595,7 +595,7 @@ int main(int argc, char **argv)
|
||||
int just_test_share_exists = FALSE;
|
||||
unsigned long now;
|
||||
struct winsize size;
|
||||
const struct Backend_vtable *backvt;
|
||||
const struct BackendVtable *backvt;
|
||||
|
||||
fdlist = NULL;
|
||||
fdcount = fdsize = 0;
|
||||
@ -633,7 +633,7 @@ int main(int argc, char **argv)
|
||||
*/
|
||||
char *p = getenv("PLINK_PROTOCOL");
|
||||
if (p) {
|
||||
const struct Backend_vtable *vt = backend_vt_from_name(p);
|
||||
const struct BackendVtable *vt = backend_vt_from_name(p);
|
||||
if (vt) {
|
||||
default_protocol = vt->protocol;
|
||||
default_port = vt->default_port;
|
||||
|
Reference in New Issue
Block a user