mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-19 02:15:36 +00:00
(fix) avoid displaying empty signed emails when using GNU TLS (fixes #4433)
This commit is contained in:
@@ -170,8 +170,9 @@
|
||||
if (err)
|
||||
{
|
||||
ERR_load_crypto_strings();
|
||||
SSL_load_error_strings();
|
||||
sslError = ERR_reason_error_string(err);
|
||||
validationMessage = [[self labelForKey: [NSString stringWithUTF8String: sslError]] retain];
|
||||
validationMessage = [[self labelForKey: [NSString stringWithUTF8String: sslError ? sslError : "(no error information available)"]] retain];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user