1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-05-28 23:34:49 -05:00

Make wincons logging-related functions non-static.

Since they're declared thus in putty.h and needed in clicons.c (as of
d20d3b20fd).
This commit is contained in:
Jacob Nevins 2020-01-31 09:38:36 +00:00
parent 22deebfc3e
commit e9c3f1ca6d

View File

@ -311,9 +311,8 @@ bool console_set_trust_status(Seat *seat, bool trusted)
* Ask whether to wipe a session log file before writing to it.
* Returns 2 for wipe, 1 for append, 0 for cancel (don't log).
*/
static int console_askappend(LogPolicy *lp, Filename *filename,
void (*callback)(void *ctx, int result),
void *ctx)
int console_askappend(LogPolicy *lp, Filename *filename,
void (*callback)(void *ctx, int result), void *ctx)
{
HANDLE hin;
DWORD savemode, i;
@ -400,7 +399,7 @@ void pgp_fingerprints(void)
" " PGP_PREV_MASTER_KEY_FP "\n", stdout);
}
static void console_logging_error(LogPolicy *lp, const char *string)
void console_logging_error(LogPolicy *lp, const char *string)
{
/* Ordinary Event Log entries are displayed in the same way as
* logging errors, but only in verbose mode */
@ -408,7 +407,7 @@ static void console_logging_error(LogPolicy *lp, const char *string)
fflush(stderr);
}
static void console_eventlog(LogPolicy *lp, const char *string)
void console_eventlog(LogPolicy *lp, const char *string)
{
/* Ordinary Event Log entries are displayed in the same way as
* logging errors, but only in verbose mode */