mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38: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:
parent
3a9b7267dd
commit
40e648db46
@ -15,7 +15,7 @@
|
|||||||
int platform_ssh_share(const char *name, Conf *conf,
|
int platform_ssh_share(const char *name, Conf *conf,
|
||||||
Plug *downplug, Plug *upplug, Socket **sock,
|
Plug *downplug, Plug *upplug, Socket **sock,
|
||||||
char **logtext, char **ds_err, char **us_err,
|
char **logtext, char **ds_err, char **us_err,
|
||||||
int can_upstream, int can_downstream)
|
bool can_upstream, bool can_downstream)
|
||||||
{
|
{
|
||||||
return SHARE_NONE;
|
return SHARE_NONE;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user