Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 22572 invoked from network); 30 Jun 2007 12:29:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 30 Jun 2007 12:29:44 -0000 Received: (qmail 66636 invoked by uid 500); 30 Jun 2007 12:29:47 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 66593 invoked by uid 500); 30 Jun 2007 12:29:47 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 66582 invoked by uid 99); 30 Jun 2007 12:29:47 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 30 Jun 2007 05:29:47 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 30 Jun 2007 05:29:44 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id D92A31A981C; Sat, 30 Jun 2007 05:29:23 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r552135 - /directory/triplesec/trunk/changelog/src/main/java/org/safehaus/triplesec/changelog/beta/support/AttributeUtils.java Date: Sat, 30 Jun 2007 12:29:23 -0000 To: commits@directory.apache.org From: akarasulu@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070630122923.D92A31A981C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: akarasulu Date: Sat Jun 30 05:29:23 2007 New Revision: 552135 URL: http://svn.apache.org/viewvc?view=rev&rev=552135 Log: fixed breakage due to changes in shared-ldaps Syntax interface Modified: directory/triplesec/trunk/changelog/src/main/java/org/safehaus/triplesec/changelog/beta/support/AttributeUtils.java Modified: directory/triplesec/trunk/changelog/src/main/java/org/safehaus/triplesec/changelog/beta/support/AttributeUtils.java URL: http://svn.apache.org/viewvc/directory/triplesec/trunk/changelog/src/main/java/org/safehaus/triplesec/changelog/beta/support/AttributeUtils.java?view=diff&rev=552135&r1=552134&r2=552135 ============================================================================== --- directory/triplesec/trunk/changelog/src/main/java/org/safehaus/triplesec/changelog/beta/support/AttributeUtils.java (original) +++ directory/triplesec/trunk/changelog/src/main/java/org/safehaus/triplesec/changelog/beta/support/AttributeUtils.java Sat Jun 30 05:29:23 2007 @@ -56,7 +56,7 @@ String id = ( String ) attr.getID(); int size = attr.size(); - boolean isBinary = ! registry.lookup( id ).getSyntax().isHumanReadible(); + boolean isBinary = ! registry.lookup( id ).getSyntax().isHumanReadable(); StringAttribute strAttribute = new StringAttribute( id );