You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2013/11/22 23:23:52 UTC

svn commit: r1544700 - /jmeter/trunk/src/jorphan/org/apache/jorphan/exec/KeyToolUtils.java

Author: sebb
Date: Fri Nov 22 22:23:52 2013
New Revision: 1544700

URL: http://svn.apache.org/r1544700
Log:
Oops - should return the value we found ...

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=1544700&r1=1544699&r2=1544700&view=diff
==============================================================================
--- jmeter/trunk/src/jorphan/org/apache/jorphan/exec/KeyToolUtils.java (original)
+++ jmeter/trunk/src/jorphan/org/apache/jorphan/exec/KeyToolUtils.java Fri Nov 22 22:23:52 2013
@@ -380,7 +380,7 @@ public class KeyToolUtils {
     	if (KEYTOOL_PATH == null) {
     		throw new IOException("keytool application cannot be found");
     	}
-    	return "keytool";
+    	return KEYTOOL_PATH;
     }
 
     /**