Blame SOURCES/0001-ssh-Remove-left-over-comment.patch

0b2b05
From e0e592775911ebe2178b04b4b20f95fea2f2fe9c Mon Sep 17 00:00:00 2001
0b2b05
From: "Richard W.M. Jones" <rjones@redhat.com>
0b2b05
Date: Thu, 5 Jan 2023 16:05:33 +0000
0b2b05
Subject: [PATCH] ssh: Remove left over comment
0b2b05
0b2b05
This comment was left over from when I copied the libssh example code.
0b2b05
It adds no value so remove it.
0b2b05
0b2b05
(cherry picked from commit c93a8957efcc26652b31f5bc359dfd3c4019b4f8)
0b2b05
---
0b2b05
 plugins/ssh/ssh.c | 4 ----
0b2b05
 1 file changed, 4 deletions(-)
0b2b05
0b2b05
diff --git a/plugins/ssh/ssh.c b/plugins/ssh/ssh.c
0b2b05
index 6cf40c26..aaa7c2b9 100644
0b2b05
--- a/plugins/ssh/ssh.c
0b2b05
+++ b/plugins/ssh/ssh.c
0b2b05
@@ -356,10 +356,6 @@ authenticate (struct ssh_handle *h)
0b2b05
     if (rc == SSH_AUTH_SUCCESS) return 0;
0b2b05
   }
0b2b05
 
0b2b05
-  /* Example code tries keyboard-interactive here, but we cannot use
0b2b05
-   * that method from a server.
0b2b05
-   */
0b2b05
-
0b2b05
   if (password != NULL && (method & SSH_AUTH_METHOD_PASSWORD)) {
0b2b05
     rc = authenticate_password (h->session, password);
0b2b05
     if (rc == SSH_AUTH_SUCCESS) return 0;
0b2b05
-- 
0b2b05
2.31.1
0b2b05