2024-07-08 12:45:52 +00:00
|
|
|
diff -up openssh-8.7p1/log.c.xxx openssh-8.7p1/log.c
|
|
|
|
--- openssh-8.7p1/log.c.xxx 2024-06-28 11:02:43.949912398 +0200
|
|
|
|
+++ openssh-8.7p1/log.c 2024-06-28 11:02:58.652297885 +0200
|
2024-07-01 17:28:42 +00:00
|
|
|
@@ -455,12 +455,14 @@ void
|
2024-07-01 13:50:53 +00:00
|
|
|
sshsigdie(const char *file, const char *func, int line, int showfunc,
|
|
|
|
LogLevel level, const char *suffix, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
+#if 0
|
2024-07-01 17:28:42 +00:00
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
sshlogv(file, func, line, showfunc, SYSLOG_LEVEL_FATAL,
|
|
|
|
suffix, fmt, args);
|
|
|
|
va_end(args);
|
2024-07-01 13:50:53 +00:00
|
|
|
+#endif
|
2024-07-01 17:28:42 +00:00
|
|
|
_exit(1);
|
2024-07-01 13:50:53 +00:00
|
|
|
}
|
2024-07-01 17:28:42 +00:00
|
|
|
|