Fix incorrect backport related with keyboard interactive auth

Resolves: RHEL-44684
Relates: #2229800
This commit is contained in:
Jacek Migacz 2024-06-25 16:18:21 +02:00
parent b5f595d624
commit bf78d11a4d
2 changed files with 5 additions and 2 deletions

View File

@ -153,7 +153,7 @@ index 7ebe61321419f..1cecb649cb623 100644
if(rc == SSH_OK) { if(rc == SSH_OK) {
sshc->authed = TRUE; sshc->authed = TRUE;
infof(data, "completed keyboard interactive authentication\n"); infof(data, "completed keyboard interactive authentication\n");
+ state(data, SSH_AUTH_DONE); + state(conn, SSH_AUTH_DONE);
+ } + }
+ else { + else {
+ MOVE_TO_PASSWD_AUTH; + MOVE_TO_PASSWD_AUTH;

View File

@ -1,7 +1,7 @@
Summary: A utility for getting files from remote servers (FTP, HTTP, and others) Summary: A utility for getting files from remote servers (FTP, HTTP, and others)
Name: curl Name: curl
Version: 7.61.1 Version: 7.61.1
Release: 34%{?dist} Release: 34%{?dist}.1
License: MIT License: MIT
Source: https://curl.haxx.se/download/%{name}-%{version}.tar.xz Source: https://curl.haxx.se/download/%{name}-%{version}.tar.xz
@ -570,6 +570,9 @@ rm -f ${RPM_BUILD_ROOT}%{_libdir}/libcurl.la
%{_libdir}/libcurl.so.4.[0-9].[0-9].minimal %{_libdir}/libcurl.so.4.[0-9].[0-9].minimal
%changelog %changelog
* Tue Jun 25 2024 Jacek Migacz <jmigacz@redhat.com> - 7.61.1-34.el8_10.1
- fix incorrect backport of bz2229800 (RHEL-44684)
* Tue Sep 19 2023 Jacek Migacz <jmigacz@redhat.com> - 7.61.1-34 * Tue Sep 19 2023 Jacek Migacz <jmigacz@redhat.com> - 7.61.1-34
- when keyboard-interactive auth fails, try password (#2229800) - when keyboard-interactive auth fails, try password (#2229800)
- cap SFTP packet size sent (RHEL-5311) - cap SFTP packet size sent (RHEL-5311)