mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-25 01:02:24 +00:00
Fix a paste error in new make_handle_socket prototype.
Thanks to Colin Harrison for spotting it very quickly. No thanks to Visual Studio for only giving me a _warning_ when I prototyped a function with four parameters and called it with five!
This commit is contained in:
parent
7c65b9c57a
commit
e1c2307cdd
@ -13,8 +13,8 @@
|
||||
#include "network.h"
|
||||
#include "proxy.h"
|
||||
|
||||
Socket make_handle_socket(HANDLE send_H, HANDLE recv_H, Plug plug,
|
||||
int overlapped);
|
||||
Socket make_handle_socket(HANDLE send_H, HANDLE recv_H, HANDLE stderr_H,
|
||||
Plug plug, int overlapped);
|
||||
|
||||
Socket platform_new_connection(SockAddr addr, const char *hostname,
|
||||
int port, int privport,
|
||||
|
Loading…
Reference in New Issue
Block a user