1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-06-30 19:12:48 -05:00

Use 'true' and 'false' in sk_set_frozen calls.

Apparently a handful of calls to that particular function managed to
miss my big-bang conversion to using bool where appropriate, and were
still being called with constants 0 and 1.
This commit is contained in:
Simon Tatham
2020-02-12 21:35:04 +00:00
parent f3b2c0f209
commit 230c8ef4ee
4 changed files with 7 additions and 7 deletions

View File

@ -1492,7 +1492,7 @@ static int pageant_listen_accepting(Plug *plug,
return 1;
}
sk_set_frozen(pc->connsock, 0);
sk_set_frozen(pc->connsock, false);
peerinfo = sk_peer_info(pc->connsock);
if (peerinfo && peerinfo->log_text) {