mirror of
https://github.com/profanity-im/profanity.git
synced 2025-01-03 14:57:42 -05:00
Show trusted certificate fingerprint first
This commit is contained in:
parent
6f8ad6b8e8
commit
8d2c7f1ac0
@ -201,6 +201,9 @@ cmd_tls(ProfWin *window, const char * const command, gchar **args)
|
||||
}
|
||||
while (curr) {
|
||||
TLSCertificate *cert = curr->data;
|
||||
if (cert->fingerprint) {
|
||||
cons_show("Fingerprint : %s", cert->fingerprint);
|
||||
}
|
||||
if (cert->domain) {
|
||||
cons_show("Domain : %s", cert->domain);
|
||||
}
|
||||
@ -216,9 +219,6 @@ cmd_tls(ProfWin *window, const char * const command, gchar **args)
|
||||
if (cert->notafter) {
|
||||
cons_show("End : %s", cert->notafter);
|
||||
}
|
||||
if (cert->fingerprint) {
|
||||
cons_show("Fingerprint : %s", cert->fingerprint);
|
||||
}
|
||||
cons_show("");
|
||||
curr = g_list_next(curr);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user