From f589378b4835499affa7d5d6f362628580f59b7f Mon Sep 17 00:00:00 2001 From: Vijay Anusuri Date: Fri, 27 Mar 2026 15:29:03 +0530 Subject: [PATCH] libssh: Update CVE-2026-0966-2.patch Corrected the ssh_print_hexa to ssh_print_hash in the patch Signed-off-by: Vijay Anusuri Signed-off-by: Gyorgy Sarvari --- meta-oe/recipes-support/libssh/libssh/CVE-2026-0966-2.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-support/libssh/libssh/CVE-2026-0966-2.patch b/meta-oe/recipes-support/libssh/libssh/CVE-2026-0966-2.patch index 9a035dbc1e..7162a47488 100644 --- a/meta-oe/recipes-support/libssh/libssh/CVE-2026-0966-2.patch +++ b/meta-oe/recipes-support/libssh/libssh/CVE-2026-0966-2.patch @@ -40,7 +40,7 @@ index 008ccb4e..bdd7489c 100644 case SSH_KNOWN_HOSTS_CHANGED: fprintf(stderr, "Host key for server changed: it is now:\n"); - ssh_print_hexa("Public key hash", hash, hlen); -+ ssh_print_hexa(SSH_PUBLICKEY_HASH_SHA256, hash, hlen); ++ ssh_print_hash(SSH_PUBLICKEY_HASH_SHA256, hash, hlen); fprintf(stderr, "For security reasons, connection will be stopped\n"); ssh_clean_pubkey_hash(&hash);