From commits-return-57353-apmail-harmony-commits-archive=harmony.apache.org@harmony.apache.org Thu Feb 26 08:27:30 2009 Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 79687 invoked from network); 26 Feb 2009 08:27:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Feb 2009 08:27:30 -0000 Received: (qmail 70715 invoked by uid 500); 26 Feb 2009 08:27:30 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 70695 invoked by uid 500); 26 Feb 2009 08:27:30 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 70686 invoked by uid 99); 26 Feb 2009 08:27:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Feb 2009 00:27:30 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Feb 2009 08:27:28 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 8F82C234C48D for ; Thu, 26 Feb 2009 00:27:07 -0800 (PST) Message-ID: <2136975119.1235636827586.JavaMail.jira@brutus> Date: Thu, 26 Feb 2009 00:27:07 -0800 (PST) From: "Regis Xu (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-6100) [classlib][jndi] CompositeName.toString() should not escape "'" In-Reply-To: <336117773.1235636462062.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-6100?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Regis Xu updated HARMONY-6100: ------------------------------ Attachment: HARMONY-6100.diff Would anyone want to try this fix? > [classlib][jndi] CompositeName.toString() should not escape "'" > --------------------------------------------------------------- > > Key: HARMONY-6100 > URL: https://issues.apache.org/jira/browse/HARMONY-6100 > Project: Harmony > Issue Type: Bug > Components: Classlib > Affects Versions: 5.0M8 > Reporter: Regis Xu > Fix For: 5.0M9 > > Attachments: HARMONY-6100.diff > > > test case: > System.out.println(new CompositeName("cn=test'sname").toString()); > RI output: > cn=test'sname > Harmony output: > cn=test\'sname > Harmony add extra escape char "\". Spec isn't clear on this case, it's better to be compatible with RI. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.