Fix loglevel regression
Related: rhbz#2182252, rhbz#2189740 Signed-off-by: Norbert Pocs <npocs@redhat.com>
This commit is contained in:
parent
18eec23532
commit
bd00cd22a0
@ -1,6 +1,6 @@
|
||||
Name: libssh
|
||||
Version: 0.10.4
|
||||
Release: 10%{?dist}
|
||||
Release: 11%{?dist}
|
||||
Summary: A library implementing the SSH protocol
|
||||
License: LGPLv2+
|
||||
URL: http://www.libssh.org
|
||||
@ -143,6 +143,10 @@ popd
|
||||
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/libssh/libssh_server.config
|
||||
|
||||
%changelog
|
||||
* Wed Jun 21 2023 Norbert Pocs <npocs@redhat.com> - 0.10.4-11
|
||||
- Fix loglevel regression
|
||||
- Related: rhbz#2182252, rhbz#2189740
|
||||
|
||||
* Mon May 22 2023 Norbert Pocs <npocs@redhat.com> - 0.10.4.10
|
||||
- Fix null dereference issues found by covscan
|
||||
- Related: rhbz#2182252, rhbz#2189740
|
||||
|
@ -196,7 +196,7 @@ diff --color -ru ../libssh-0.10.4/src/client.c ./src/client.c
|
||||
+ goto error;
|
||||
+ }
|
||||
+ set_status(session, 0.4f);
|
||||
+ SSH_LOG(SSH_LOG_PROTOCOL,
|
||||
+ SSH_LOG(SSH_LOG_DEBUG,
|
||||
+ "SSH server banner: %s", session->serverbanner);
|
||||
+
|
||||
+ /* Here we analyze the different protocols the server allows. */
|
||||
@ -1018,7 +1018,7 @@ diff --color -ru ../libssh-0.10.4/src/kex.c ./src/kex.c
|
||||
- SSH_LOG(SSH_LOG_DEBUG, "Negotiated %s,%s,%s,%s,%s,%s,%s,%s,%s,%s",
|
||||
+ crypto->kex_type = kex_type;
|
||||
+
|
||||
+ SSH_LOG(SSH_LOG_INFO, "Negotiated %s,%s,%s,%s,%s,%s,%s,%s,%s,%s",
|
||||
+ SSH_LOG(SSH_LOG_DEBUG, "Negotiated %s,%s,%s,%s,%s,%s,%s,%s,%s,%s",
|
||||
session->next_crypto->kex_methods[SSH_KEX],
|
||||
session->next_crypto->kex_methods[SSH_HOSTKEYS],
|
||||
session->next_crypto->kex_methods[SSH_CRYPT_C_S],
|
||||
@ -1386,7 +1386,7 @@ diff --color -ru ../libssh-0.10.4/src/server.c ./src/server.c
|
||||
+ goto error;
|
||||
+ }
|
||||
+ set_status(session, 0.4f);
|
||||
+ SSH_LOG(SSH_LOG_PROTOCOL,
|
||||
+ SSH_LOG(SSH_LOG_DEBUG,
|
||||
+ "SSH client banner: %s", session->clientbanner);
|
||||
+
|
||||
+ /* Here we analyze the different protocols the server allows. */
|
||||
|
Loading…
Reference in New Issue
Block a user