about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/command/commands.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/command/commands.c b/src/command/commands.c
index 70f41a6d..94734563 100644
--- a/src/command/commands.c
+++ b/src/command/commands.c
@@ -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);
         }
span> ^
f9737251 ^











a7d89e0e ^

5eaf687d ^


0a57c4de ^
da03617e ^
44d16e91 ^

74a88ad5 ^







bf1cf044 ^




75cfe388 ^
2bbac1c8 ^

c3418a29 ^
55f49f12 ^
3b0f7e10 ^



dd11334b ^
c90c83f7 ^
5eaf687d ^
e8314106 ^



bf1cf044 ^
8944a3b5 ^
8c8c18c6 ^



8944a3b5 ^
f831f657 ^



8944a3b5 ^
bf1cf044 ^
dd11334b ^
8c5866ff ^

4e1ffa6b ^




dd11334b ^
5eaf687d ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94