You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@jmeter.apache.org by bu...@apache.org on 2014/10/13 23:25:36 UTC

[Bug 56178] keytool error: Invalid escaped character in AVA: - some characters must be escaped

https://issues.apache.org/bugzilla/show_bug.cgi?id=56178

--- Comment #5 from Graham <jm...@ham1.co.uk> ---
Looking at lines 72-74 of KeyToolUtils.java:
    String userName = System.getProperty("user.name"); // $NON-NLS-1$
    userName.replace('\\','/'); // Backslash is special (Bugzilla 56178)
    addElement(sb, "OU=Username: ", userName); // $NON-NLS-1$
it looks like the fix didn't actually do anything. Should we remove this code
or replace line 73 with:
    userName = userName.replace('\\','/');

-- 
You are receiving this mail because:
You are the assignee for the bug.