Lakka-LibreELEC/packages/network/openssh/patches/openssh-silence-missing-identity-error.patch
heitbaum e6ea0cf6a5 openssh: update to 8.5p1
update 8.4p1 (2020-09-27) to 8.5p1 (2021-03-03)
release notes: http://www.openssh.com/txt/release-8.5

update patches - reverting openssh-portable patch:
- acadbb3402
2021-03-04 11:58:32 +00:00

15 lines
442 B
Diff

diff --git a/sshconnect2.c b/sshconnect2.c
index d6af0b9..22c0aa6 100644
--- a/sshconnect2.c
+++ b/sshconnect2.c
@@ -1524,9 +1524,7 @@
struct stat st;
if (stat(id->filename, &st) == -1) {
- do_log2(id->userprovided ?
- SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_DEBUG3,
- "no such identity: %s: %s", id->filename, strerror(errno));
+ debug3("no such identity: %s", id->filename);
return NULL;
}
snprintf(prompt, sizeof prompt,