summaryrefslogtreecommitdiff
path: root/log.c
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2024-07-01 14:01:36 +0000
committerEd Maste <emaste@FreeBSD.org>2024-07-01 14:01:36 +0000
commitd565364dadebdaabef4ecead36ae102774e81174 (patch)
treedc22dc885255344e9a27e99a9d4ab2f9b3ec211f /log.c
parent9200ce3210fdc00706904d2eb2d8a481ed84eef3 (diff)
Vendor import of OpenSSH 9.8p1vendor/openssh/9.8p1
Diffstat (limited to 'log.c')
-rw-r--r--log.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/log.c b/log.c
index 9fc1a2e2eaf6..23ad10c0225d 100644
--- a/log.c
+++ b/log.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: log.c,v 1.61 2023/12/06 21:06:48 djm Exp $ */
+/* $OpenBSD: log.c,v 1.62 2024/06/27 22:36:44 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -448,19 +448,6 @@ sshlogdie(const char *file, const char *func, int line, int showfunc,
}
void
-sshsigdie(const char *file, const char *func, int line, int showfunc,
- LogLevel level, const char *suffix, const char *fmt, ...)
-{
- va_list args;
-
- va_start(args, fmt);
- sshlogv(file, func, line, showfunc, SYSLOG_LEVEL_FATAL,
- suffix, fmt, args);
- va_end(args);
- _exit(1);
-}
-
-void
sshlogv(const char *file, const char *func, int line, int showfunc,
LogLevel level, const char *suffix, const char *fmt, va_list args)
{