Browse Source

update gitignore

jrivard@gmail.com 6 years ago
parent
commit
9bbc4899ac
2 changed files with 4 additions and 1 deletions
  1. 2 0
      client/.gitignore
  2. 2 1
      server/src/main/java/password/pwm/util/secure/X509Utils.java

+ 2 - 0
client/.gitignore

@@ -10,3 +10,5 @@
 
 # Generated log files
 *.log
+
+/package-lock.json

+ 2 - 1
server/src/main/java/password/pwm/util/secure/X509Utils.java

@@ -313,7 +313,8 @@ public abstract class X509Utils
                 }
                 if ( !certTrusted )
                 {
-                    final String errorMsg = "server certificate {subject=" + loopCert.getSubjectDN().getName() + "} does not match a certificate in the configuration trust store.";
+                    final String errorMsg = "server certificate {subject=" + loopCert.getSubjectDN().getName() + "} does not match a certificate in the"
+                            + PwmConstants.PWM_APP_NAME + " configuration trust store.";
                     throw new CertificateException( errorMsg );
                 }
                 //LOGGER.trace("trusting configured certificate: " + makeDebugText(loopCert));