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

--- Comment #5 from Graham <[email protected]> ---
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.

Reply via email to