From 3554b4afa38b3483a3302f1be18eaa6f843bb260 Mon Sep 17 00:00:00 2001 From: "djm@openbsd.org" Date: Sat, 17 Oct 2020 01:28:20 +0000 Subject: upstream: make the log functions that exit (sshlogdie(), sshfatal(), etc) have identical signatures. Makes things a bit more consistent... OpenBSD-Commit-ID: bd0ae124733389d7c0042e135c71ee9091362eb9 --- fatal.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'fatal.c') diff --git a/fatal.c b/fatal.c index 3ecd510f..40daa08b 100644 --- a/fatal.c +++ b/fatal.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fatal.c,v 1.8 2020/10/16 13:24:45 djm Exp $ */ +/* $OpenBSD: fatal.c,v 1.9 2020/10/17 01:28:20 djm Exp $ */ /* * Copyright (c) 2002 Markus Friedl. All rights reserved. * @@ -34,12 +34,13 @@ /* Fatal messages. This function never returns. */ void -sshfatal(const char *file, const char *func, int line, const char *fmt, ...) +sshfatal(const char *file, const char *func, int line, int showfunc, + LogLevel level, const char *fmt, ...) { va_list args; va_start(args, fmt); - ssh_log(file, func, line, SYSLOG_LEVEL_FATAL, fmt, args); + ssh_log(file, func, line, showfunc, level, fmt, args); va_end(args); cleanup_exit(255); } -- cgit v1.2.1