diff options
| author | 2022-12-01 05:14:58 +0000 | |
|---|---|---|
| committer | 2022-12-01 05:25:01 +0000 | |
| commit | 45e56e5ee1bdb9e169be957e21a4f7b536e417ff (patch) | |
| tree | 72642028744c278ca476e656933716ac9f7357b8 /src/modules/m_sslinfo.cpp | |
| parent | Merge branch 'insp3' into master. (diff) | |
Yet more stylistic fixes.
Diffstat (limited to 'src/modules/m_sslinfo.cpp')
| -rw-r--r-- | src/modules/m_sslinfo.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
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'); } } |
