mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
wm_copydata_got_response: fix wrong prototype.
In an early draft of commit de38a4d82
I used 'void *' as the reqid
type, and then I thought better of it and made it a special type of
its own, in keeping with my usual idea that it's better to have your
casts somewhat checked than totally unchecked. One remnant of the
'void *' version got past me. Now fixed.
This commit is contained in:
parent
7b79d22021
commit
ba0204760e
@ -776,8 +776,8 @@ static void wm_copydata_got_msg(void *vctx)
|
||||
pageant_handle_msg(&wmcpc, NULL, make_ptrlen(wmct.body, wmct.bodylen));
|
||||
}
|
||||
|
||||
static void wm_copydata_got_response(PageantClient *pc, void *reqid,
|
||||
ptrlen response)
|
||||
static void wm_copydata_got_response(
|
||||
PageantClient *pc, PageantClientRequestId *reqid, ptrlen response)
|
||||
{
|
||||
if (response.len > wmct.bodysize) {
|
||||
/* Output would overflow message buffer. Replace with a
|
||||
|
Loading…
Reference in New Issue
Block a user