Author: pmouawad
Date: Thu Jul  5 20:32:44 2018
New Revision: 1835186

URL: http://svn.apache.org/viewvc?rev=1835186&view=rev
Log:
Rename Intermediate and Root Certificate so that it's clear for user what he 
must do.

Modified:
    jmeter/trunk/src/jorphan/org/apache/jorphan/exec/KeyToolUtils.java

Modified: jmeter/trunk/src/jorphan/org/apache/jorphan/exec/KeyToolUtils.java
URL: 
http://svn.apache.org/viewvc/jmeter/trunk/src/jorphan/org/apache/jorphan/exec/KeyToolUtils.java?rev=1835186&r1=1835185&r2=1835186&view=diff
==============================================================================
--- jmeter/trunk/src/jorphan/org/apache/jorphan/exec/KeyToolUtils.java 
(original)
+++ jmeter/trunk/src/jorphan/org/apache/jorphan/exec/KeyToolUtils.java Thu Jul  
5 20:32:44 2018
@@ -52,7 +52,7 @@ public class KeyToolUtils {
     /** Name of property that can be used to override the default keytool 
location */
     private static final String KEYTOOL_DIRECTORY = "keytool.directory"; // 
$NON-NLS-1$
     
-    private static final String DNAME_INTERMEDIATE_CA_KEY  = "cn=DO NOT 
INSTALL THIS CERTIFICATE (JMeter Intermediate CA)"; // $NON-NLS-1$
+    private static final String DNAME_INTERMEDIATE_CA_KEY  = "cn=JMeter 
Intermediate CA for recording (INSTALL ONLY IF IT S YOURS)"; // $NON-NLS-1$
 
     public static final String ROOT_CACERT_CRT_PFX = 
"ApacheJMeterTemporaryRootCA"; // $NON-NLS-1$ (do not change)
     private static final String ROOT_CACERT_CRT = ROOT_CACERT_CRT_PFX + 
".crt"; // $NON-NLS-1$ (Firefox and Windows)
@@ -71,7 +71,8 @@ public class KeyToolUtils {
 
     static {
         StringBuilder sb = new StringBuilder();
-        sb.append("CN=_ DO NOT INSTALL unless this is your certificate (JMeter 
root CA)"); // $NON-NLS-1$
+        
+        sb.append("CN=_ JMeter Root CA for recording (INSTALL ONLY IF IT S 
YOURS)"); // $NON-NLS-1$
         String userName = System.getProperty("user.name"); // $NON-NLS-1$
         userName = userName.replace('\\','/'); // Backslash is special 
(Bugzilla 56178)
         addElement(sb, "OU=Username: ", userName); // $NON-NLS-1$


Reply via email to