[openssh-commits] [openssh] 01/01: upstream: avoid printing hash algorithm twice; from lucas AT sexy.is
git+noreply at mindrot.org
git+noreply at mindrot.org
Thu Apr 28 13:55:16 AEST 2022
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit e05522008092ceb86a87bdd4ad7878424315db89
Author: djm at openbsd.org <djm at openbsd.org>
Date: Thu Apr 28 02:53:31 2022 +0000
upstream: avoid printing hash algorithm twice; from lucas AT sexy.is
OpenBSD-Commit-ID: 9d24671e10a84141b7c504396cabad600e47a941
---
krl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/krl.c b/krl.c
index 17b88edd..473a9d73 100644
--- a/krl.c
+++ b/krl.c
@@ -14,7 +14,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $OpenBSD: krl.c,v 1.53 2021/06/04 06:19:07 djm Exp $ */
+/* $OpenBSD: krl.c,v 1.54 2022/04/28 02:53:31 djm Exp $ */
#include "includes.h"
@@ -1388,7 +1388,7 @@ krl_dump(struct ssh_krl *krl, FILE *f)
error("sshkey_fingerprint failed");
continue;
}
- fprintf(f, "hash: SHA256:%s # %s\n", fp, sshkey_ssh_name(key));
+ fprintf(f, "hash: %s # %s\n", fp, sshkey_ssh_name(key));
free(fp);
free(key);
}
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list