commit 7325d16933e31b165c88e8c61b0e47d1dd661c0d
parent d4371114943c8d4db44c8e9a79826beeb2b316f9
Author: hhvn <dev@hhvn.uk>
Date: Thu, 21 Apr 2022 20:54:46 +0100
Fix format.ui.tls.issuer and format.ui.tls.subject defaults
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/data/config.h b/src/data/config.h
@@ -275,12 +275,12 @@ struct Config config[] = {
.description = {
"TLS server name indication.", NULL}},
{"format.ui.tls.issuer", 1, Val_string,
- .str = "Cert issuer: %{b}${3}%{b}",
+ .str = "Cert issuer: %{b}${2}%{b}",
.strhandle = config_redraws,
.description = {
"TLS certificate issuer.", NULL}},
{"format.ui.tls.subject", 1, Val_string,
- .str = "Cert subject: %{b}${3}%{b}",
+ .str = "Cert subject: %{b}${2}%{b}",
.strhandle = config_redraws,
.description = {
"TLS certificate subject.", NULL}},