diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-08-27 12:33:32 +0300 | 
|---|---|---|
| committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-08-27 13:01:19 +0300 | 
| commit | be48bee98f3da0e956a777f4478e010fed7c66eb (patch) | |
| tree | b1597d2f9a9137b2cb83b8107ad78adc76a571eb | |
| parent | 31c13ffe251a6b638ace0f14e20ccbfaf9adcb1b (diff) | |
SL-13835 Fixed warning for certificate
| -rw-r--r-- | indra/newview/llstartup.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/notifications.xml | 11 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/strings.xml | 1 | 
3 files changed, 14 insertions, 2 deletions
| diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index b130fd281c..3ef2d47d37 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -1134,11 +1134,11 @@ bool idle_startup()                          }                          catch (LLCertException &cert_exception)                          { -                            LL_WARNS("LLStartup", "SECAPI") << "Caught " << cert_exception.what() << " certificate expception on getCertificate()" << LL_ENDL; +                            LL_WARNS("LLStartup", "SECAPI") << "Caught " << cert_exception.what() << " certificate expception on getCertificate("<< response["certificate"] << ")" << LL_ENDL;                              LLSD args;                              args["REASON"] = LLTrans::getString(cert_exception.what()); -                            LLNotificationsUtil::add("GeneralCertificateError", args, response, +                            LLNotificationsUtil::add("GeneralCertificateErrorShort", args, response,                                  general_cert_done);                              reset_login(); diff --git a/indra/newview/skins/default/xui/en/notifications.xml b/indra/newview/skins/default/xui/en/notifications.xml index 32a801e1a3..a0d56a0d08 100644 --- a/indra/newview/skins/default/xui/en/notifications.xml +++ b/indra/newview/skins/default/xui/en/notifications.xml @@ -3692,6 +3692,17 @@ Could not teleport to [SLURL] as it's on a different grid ([GRID]) than the curr    </notification>    <notification icon="alertmodal.tga" +		name="GeneralCertificateErrorShort" +		type="alertmodal"> +Could not connect to the server. +[REASON] +    <tag>fail</tag> +    <usetemplate +     name="okbutton" +     yestext="OK"/> +  </notification> + +  <notification icon="alertmodal.tga"  		name="GeneralCertificateError"  		type="alertmodal">  Could not connect to the server. diff --git a/indra/newview/skins/default/xui/en/strings.xml b/indra/newview/skins/default/xui/en/strings.xml index 30416768cd..8a7923dd26 100644 --- a/indra/newview/skins/default/xui/en/strings.xml +++ b/indra/newview/skins/default/xui/en/strings.xml @@ -107,6 +107,7 @@ Voice Server Version: [VOICE_VERSION]  	<string name="CertExpired">The certificate returned by the Grid appears to be expired.  Please check your system clock, or contact your Grid administrator.</string>  	<string name="CertKeyUsage">The certificate returned by the server could not be used for SSL.  Please contact your Grid administrator.</string>  	<string name="CertBasicConstraints">Too many certificates were in the servers Certificate chain.  Please contact your Grid administrator.</string> +	<string name="CertInvalid">Could not load cetrificate. Please contact your Grid administrator.</string>  	<string name="CertInvalidSignature">The certificate signature returned by the Grid server could not be verified.  Please contact your Grid administrator.</string>  	<string name="CertAllocationFailure">Failed to allocate openssl memory for certificate.</string> | 
