mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-06 14:02: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:
@ -89,7 +89,7 @@ struct NetSocket {
|
||||
*/
|
||||
NetSocket *parent, *child;
|
||||
|
||||
const Socket_vtable *sockvt;
|
||||
const SocketVtable *sockvt;
|
||||
};
|
||||
|
||||
struct SockAddr {
|
||||
@ -507,7 +507,7 @@ static void sk_net_set_frozen(Socket *s, int is_frozen);
|
||||
static char *sk_net_peer_info(Socket *s);
|
||||
static const char *sk_net_socket_error(Socket *s);
|
||||
|
||||
static struct Socket_vtable NetSocket_sockvt = {
|
||||
static struct SocketVtable NetSocket_sockvt = {
|
||||
sk_net_plug,
|
||||
sk_net_close,
|
||||
sk_net_write,
|
||||
|
Reference in New Issue
Block a user