summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-10-29 13:50:25 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-10-29 13:50:31 +0200
commitb12399bf941f9de46798e84a818c9cffded6debe (patch)
tree29d05a7fbfd26dde246b1a81ade6370bac1c93f4
parentb29321644b03df1b273d40c7d5895fa2ca329211 (diff)
Cleanup
-rw-r--r--res/about/version.gmi4
-rw-r--r--src/gmcerts.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/res/about/version.gmi b/res/about/version.gmi
index 5c4bd595..5359514f 100644
--- a/res/about/version.gmi
+++ b/res/about/version.gmi
@@ -8,9 +8,9 @@
8 8
9## 0.7 9## 0.7
10* Faster drawing of certain UI elements: site icon and current heading in the left margin, unfocused input fields, timestamp at the end of the page. 10* Faster drawing of certain UI elements: site icon and current heading in the left margin, unfocused input fields, timestamp at the end of the page.
11* Fixed handling of TLS/SSL and hostname lookup errors — an appropriate error page is shown.
12* Improved opening connections when multiple IP addresses are found for a hostname.
13* History is not updated until a network request finishes. 11* History is not updated until a network request finishes.
12* Improved opening connections when multiple IP addresses are found for a hostname.
13* Fixed handling of TLS/SSL errors and hostname lookup problems — an error page is shown.
14* Fixed an issue where window contents were not being updated immediately after the window gets exposed when using, e.g., openbox or dwm. 14* Fixed an issue where window contents were not being updated immediately after the window gets exposed when using, e.g., openbox or dwm.
15 15
16## 0.6 16## 0.6
diff --git a/src/gmcerts.c b/src/gmcerts.c
index b5b7b371..27b226a0 100644
--- a/src/gmcerts.c
+++ b/src/gmcerts.c
@@ -478,7 +478,7 @@ iGmIdentity *newIdentity_GmCerts(iGmCerts *d, int flags, iDate validUntil, const
478 478
479static const char *certPath_GmCerts_(const iGmCerts *d, const iGmIdentity *identity) { 479static const char *certPath_GmCerts_(const iGmCerts *d, const iGmIdentity *identity) {
480 if (!(identity->flags & (temporary_GmIdentityFlag | imported_GmIdentityFlag))) { 480 if (!(identity->flags & (temporary_GmIdentityFlag | imported_GmIdentityFlag))) {
481 const char *finger = cstrCollect_String(hexEncode_Block(&identity->fingerprint)); 481 const char *finger = cstrCollect_String(hexEncode_Block(&identity->fingerprint));
482 return concatPath_CStr(cstr_String(&d->saveDir), format_CStr("idents/%s", finger)); 482 return concatPath_CStr(cstr_String(&d->saveDir), format_CStr("idents/%s", finger));
483 } 483 }
484 return NULL; 484 return NULL;