[openssh-commits] [openssh] 01/03: upstream: use do_log2 instead of function pointers to different log
git+noreply at mindrot.org
git+noreply at mindrot.org
Sat Oct 17 00:43:26 AEDT 2020
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit acadbb3402b70f72f14d9a6930ad41be97c2f9dc
Author: djm at openbsd.org <djm at openbsd.org>
Date: Fri Oct 16 02:37:12 2020 +0000
upstream: use do_log2 instead of function pointers to different log
functions
OpenBSD-Commit-ID: 88077b826d348c58352a6b394755520f4e484480
---
sshconnect2.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/sshconnect2.c b/sshconnect2.c
index 6da2248f..9e3bd05c 100644
--- a/sshconnect2.c
+++ b/sshconnect2.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect2.c,v 1.329 2020/10/07 02:22:23 djm Exp $ */
+/* $OpenBSD: sshconnect2.c,v 1.330 2020/10/16 02:37:12 djm Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
* Copyright (c) 2008 Damien Miller. All rights reserved.
@@ -1515,8 +1515,9 @@ load_identity_file(Identity *id)
struct stat st;
if (stat(id->filename, &st) == -1) {
- (id->userprovided ? logit : debug3)("no such identity: %s: %s",
- id->filename, strerror(errno));
+ do_log2(id->userprovided ?
+ SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_DEBUG3,
+ "no such identity: %s: %s", id->filename, strerror(errno));
return NULL;
}
snprintf(prompt, sizeof prompt,
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list