mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 19:19:02 -04:00
Fix an inverted condition in the previous commit.
This commit is contained in:
parent
1d9936943e
commit
ad8f880e30
@ -82,9 +82,9 @@ class SSLCertExt : public ExtensionItem
|
||||
<< " ";
|
||||
|
||||
if (cert->GetError().empty())
|
||||
value << cert->GetError();
|
||||
else
|
||||
value << cert->GetFingerprint() << " " << cert->GetDN() << " " << cert->GetIssuer();
|
||||
else
|
||||
value << cert->GetError();
|
||||
|
||||
return value.str();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user