1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-06 05:52:48 -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:
Simon Tatham
2018-10-05 07:03:46 +01:00
parent e0130a48ca
commit b798230844
44 changed files with 109 additions and 109 deletions

View File

@ -76,7 +76,7 @@ struct NetSocket {
*/
NetSocket *parent, *child;
const Socket_vtable *sockvt;
const SocketVtable *sockvt;
};
struct SockAddr {
@ -935,7 +935,7 @@ static char *sk_net_peer_info(Socket *s);
extern char *do_select(SOCKET skt, int startup);
static const Socket_vtable NetSocket_sockvt = {
static const SocketVtable NetSocket_sockvt = {
sk_net_plug,
sk_net_close,
sk_net_write,