mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
Reinstate missing bit counts in Windows Pageant GUI.
An embarrassing braino of && for || produced a boolean expression that
could never evaluate true.
(cherry picked from commit 8245510a02
)
This commit is contained in:
parent
329bdb344c
commit
bf67ce44d0
@ -378,7 +378,7 @@ static void keylist_update_callback(
|
||||
ptrlen algname = get_string(src);
|
||||
const ssh_keyalg *alg = find_pubkey_alg_len(algname);
|
||||
|
||||
bool include_bit_count = (alg == &ssh_dss && alg == &ssh_rsa);
|
||||
bool include_bit_count = (alg == &ssh_dss || alg == &ssh_rsa);
|
||||
|
||||
int wordnumber = 0;
|
||||
for (const char *p = fingerprint; *p; p++) {
|
||||
|
Loading…
Reference in New Issue
Block a user