X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/0ac2edb34df938e43d233e4d47a05231355747ee..e35fb54b2ce23c668414c0f5cd072c709374fc6d:/logging.c diff --git a/logging.c b/logging.c index 499747c7..f32e9cae 100644 --- a/logging.c +++ b/logging.c @@ -43,7 +43,7 @@ void logtraffic(void *handle, unsigned char c, int logmode) * platforms. Platforms which don't have a meaningful stderr can * just avoid defining FLAG_STDERR. */ -void log_eventlog(void *handle, char *event) +void log_eventlog(void *handle, const char *event) { struct LogContext *ctx = (struct LogContext *)handle; if ((flags & FLAG_STDERR) && (flags & FLAG_VERBOSE)) { @@ -163,7 +163,7 @@ void logfclose(void *handle) void *log_init(void *frontend, Config *cfg) { - struct LogContext *ctx = smalloc(sizeof(struct LogContext)); + struct LogContext *ctx = snew(struct LogContext); ctx->lgfp = NULL; ctx->frontend = frontend; ctx->cfg = *cfg; /* STRUCTURE COPY */