From 45e56e5ee1bdb9e169be957e21a4f7b536e417ff Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 1 Dec 2022 05:14:58 +0000 Subject: Yet more stylistic fixes. --- src/modules/m_sslinfo.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/modules/m_sslinfo.cpp') diff --git a/src/modules/m_sslinfo.cpp b/src/modules/m_sslinfo.cpp index 15b76e4f3..269dcd43b 100644 --- a/src/modules/m_sslinfo.cpp +++ b/src/modules/m_sslinfo.cpp @@ -93,7 +93,7 @@ public: std::stringstream s(value); std::string v; - getline(s,v,' '); + getline(s, v, ' '); cert->invalid = (v.find('v') != std::string::npos); cert->trusted = (v.find('T') != std::string::npos); @@ -101,13 +101,13 @@ public: cert->unknownsigner = (v.find('s') != std::string::npos); if (v.find('E') != std::string::npos) { - getline(s,cert->error,'\n'); + getline(s, cert->error, '\n'); } else { - getline(s,cert->fingerprint,' '); - getline(s,cert->dn,' '); - getline(s,cert->issuer,'\n'); + getline(s, cert->fingerprint, ' '); + getline(s, cert->dn, ' '); + getline(s, cert->issuer, '\n'); } } -- cgit v1.3.1-10-gc9f91