Changeset 7342 in josm for trunk/src/org/openstreetmap/josm


Ignore:
Timestamp:
2014-07-28T13:31:07+02:00 (10 years ago)
Author:
Don-vip
Message:

see #10230, see #10033 - fix certificate detection

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/PlatformHookWindows.java

    r7337 r7342  
    257257            String alias = en.nextElement();
    258258            // Look for certificate to install
    259             if (ks.isKeyEntry(alias) && ks.getCertificate(alias).equals(trustedCert.getTrustedCertificate())) {
     259            if (ks.getCertificate(alias).equals(trustedCert.getTrustedCertificate())) {
    260260                // JOSM certificate found, return
     261                Main.debug("JOSM certificate found: "+alias);
    261262                return;
    262263            }
Note: See TracChangeset for help on using the changeset viewer.