mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-06 22:12: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:
6
ssh.c
6
ssh.c
@ -37,7 +37,7 @@ struct Ssh {
|
||||
struct ssh_version_receiver version_receiver;
|
||||
int remote_bugs;
|
||||
|
||||
const Plug_vtable *plugvt;
|
||||
const PlugVtable *plugvt;
|
||||
Backend backend;
|
||||
|
||||
Ldisc *ldisc;
|
||||
@ -599,7 +599,7 @@ static int ssh_test_for_upstream(const char *host, int port, Conf *conf)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static const Plug_vtable Ssh_plugvt = {
|
||||
static const PlugVtable Ssh_plugvt = {
|
||||
ssh_socket_log,
|
||||
ssh_closing,
|
||||
ssh_receive,
|
||||
@ -1087,7 +1087,7 @@ void ssh_got_fallback_cmd(Ssh *ssh)
|
||||
ssh->fallback_cmd = TRUE;
|
||||
}
|
||||
|
||||
const struct Backend_vtable ssh_backend = {
|
||||
const struct BackendVtable ssh_backend = {
|
||||
ssh_init,
|
||||
ssh_free,
|
||||
ssh_reconfig,
|
||||
|
Reference in New Issue
Block a user