1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-08 08:58:00 +00:00

Fix type error in noshare.c.

Its boolean parameters were typed 'int', a hangover from before the
int-to-bool migration last year. It's not used in the current state of
the code base, so nobody noticed until now.
This commit is contained in:
Simon Tatham 2020-11-14 21:33:19 +00:00
parent 3a9b7267dd
commit 40e648db46

View File

@ -15,7 +15,7 @@
int platform_ssh_share(const char *name, Conf *conf,
Plug *downplug, Plug *upplug, Socket **sock,
char **logtext, char **ds_err, char **us_err,
int can_upstream, int can_downstream)
bool can_upstream, bool can_downstream)
{
return SHARE_NONE;
}