From f9478ab242518fede7c09928817028d768997068 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Thu, 17 Feb 2022 01:41:57 +0100 Subject: mod_admin_shell: Squeeze some characters out of the Certificate column The more compact these are, the better --- plugins/mod_admin_shell.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/mod_admin_shell.lua b/plugins/mod_admin_shell.lua index 41ea63d2..d91de248 100644 --- a/plugins/mod_admin_shell.lua +++ b/plugins/mod_admin_shell.lua @@ -819,7 +819,7 @@ available_columns = { title = "Certificate"; description = "Validation status of certificate"; key = "cert_identity_status"; - width = 13; + width = 11; mapper = function(cert_status, session) if cert_status then return capitalize(cert_status); end if session.cert_chain_status == "Invalid" then @@ -833,7 +833,7 @@ available_columns = { elseif session.cert_identity_status == "invalid" then return "Mismatched"; end - return "Not validated"; + return "Unknown"; end; }; sni = { -- cgit v1.2.3