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

Remove 'static' qualifier from Conf pointer

Configuration pointer is globally visible from winstuff.h, so it cannot
be 'static' any longer.
This commit is contained in:
Pavel I. Kryukov
2018-11-03 21:20:40 +03:00
committed by Simon Tatham
parent 506a0b1b77
commit a4b5f66d93
4 changed files with 4 additions and 4 deletions

2
pscp.c
View File

@ -43,7 +43,7 @@ static bool using_sftp = false;
static bool uploading = false;
static Backend *backend;
static Conf *conf;
Conf *conf;
bool sent_eof = false;
static void source(const char *src);