Ignore:
Timestamp:
Jan 19, 2019, 6:12:21 PM (6 years ago)
Author:
alloc
Message:

Fixed game version compatibility of GamePrefs
Code style cleanup (mostly argument names)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/Web/OpenID.cs

    r326 r351  
    2525                                              "/steam-intermediate.cer");
    2626
    27                 private static readonly bool verboseSsl = false;
     27                private const bool verboseSsl = false;
    2828                public static bool debugOpenId;
    2929
     
    3535                        }
    3636
    37                         ServicePointManager.ServerCertificateValidationCallback = (srvPoint, certificate, chain, errors) => {
    38                                 if (errors == SslPolicyErrors.None) {
     37                        ServicePointManager.ServerCertificateValidationCallback = (_srvPoint, _certificate, _chain, _errors) => {
     38                                if (_errors == SslPolicyErrors.None) {
    3939                                        if (verboseSsl) {
    4040                                                Log.Out ("Steam certificate: No error (1)");
     
    5050                                privateChain.ChainPolicy.ExtraStore.Add (caIntermediateCert);
    5151
    52                                 if (privateChain.Build (new X509Certificate2 (certificate))) {
     52                                if (privateChain.Build (new X509Certificate2 (_certificate))) {
    5353                                        // No errors, immediately return
    5454                                        privateChain.Reset ();
Note: See TracChangeset for help on using the changeset viewer.