Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 66124 invoked from network); 25 Nov 2010 17:12:22 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 25 Nov 2010 17:12:22 -0000 Received: (qmail 75348 invoked by uid 500); 25 Nov 2010 17:12:22 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 75294 invoked by uid 500); 25 Nov 2010 17:12:22 -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 75287 invoked by uid 99); 25 Nov 2010 17:12:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Nov 2010 17:12:22 +0000 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.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Nov 2010 17:12:22 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B55A223889B3; Thu, 25 Nov 2010 17:10:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1039098 - in /directory/apacheds/trunk/i18n/src/main: java/org/apache/directory/server/i18n/I18n.java resources/org/apache/directory/server/i18n/errors.properties Date: Thu, 25 Nov 2010 17:10:50 -0000 To: commits@directory.apache.org From: kayyagari@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101125171050.B55A223889B3@eris.apache.org> Author: kayyagari Date: Thu Nov 25 17:10:50 2010 New Revision: 1039098 URL: http://svn.apache.org/viewvc?rev=1039098&view=rev Log: o added a error constant to be used in EncKrbCredPart Modified: directory/apacheds/trunk/i18n/src/main/java/org/apache/directory/server/i18n/I18n.java directory/apacheds/trunk/i18n/src/main/resources/org/apache/directory/server/i18n/errors.properties Modified: directory/apacheds/trunk/i18n/src/main/java/org/apache/directory/server/i18n/I18n.java URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/i18n/src/main/java/org/apache/directory/server/i18n/I18n.java?rev=1039098&r1=1039097&r2=1039098&view=diff ============================================================================== --- directory/apacheds/trunk/i18n/src/main/java/org/apache/directory/server/i18n/I18n.java (original) +++ directory/apacheds/trunk/i18n/src/main/java/org/apache/directory/server/i18n/I18n.java Thu Nov 25 17:10:50 2010 @@ -772,7 +772,8 @@ public enum I18n ERR_736_CANNOT_ENCODE_KRBSAFE("ERR_736_CANNOT_ENCODE_KRBSAFE"), ERR_737_CANNOT_ENCODE_ENC_KRB_PRIV_PART("ERR_737_CANNOT_ENCODE_ENC_KRB_PRIV_PART"), ERR_738_CANNOT_ENCODE_KRB_PRIV("ERR_738_CANNOT_ENCODE_KRB_PRIV"), - ERR_739_CANNOT_ENCODE_KRB_CRED_INFO("ERR_739_CANNOT_ENCODE_KRB_CRED_INFO"); + ERR_739_CANNOT_ENCODE_KRB_CRED_INFO("ERR_739_CANNOT_ENCODE_KRB_CRED_INFO"), + ERR_740_CANNOT_ENCODE_ENC_KRB_CRED_PART("ERR_740_CANNOT_ENCODE_ENC_KRB_CRED_PART"); private static ResourceBundle errBundle = ResourceBundle .getBundle( "org.apache.directory.server.i18n.errors" ); Modified: directory/apacheds/trunk/i18n/src/main/resources/org/apache/directory/server/i18n/errors.properties URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/i18n/src/main/resources/org/apache/directory/server/i18n/errors.properties?rev=1039098&r1=1039097&r2=1039098&view=diff ============================================================================== --- directory/apacheds/trunk/i18n/src/main/resources/org/apache/directory/server/i18n/errors.properties (original) +++ directory/apacheds/trunk/i18n/src/main/resources/org/apache/directory/server/i18n/errors.properties Thu Nov 25 17:10:50 2010 @@ -760,4 +760,5 @@ ERR_735_CANNOT_ENCODE_KRBSAFEBODY=Cannot ERR_736_CANNOT_ENCODE_KRBSAFE=Cannot encode the KrbSafe object, the PDU size is {0} when only {1} bytes has been allocated ERR_737_CANNOT_ENCODE_ENC_KRB_PRIV_PART=Cannot encode the EncKrbPrivPart object, the PDU size is {0} when only {1} bytes has been allocated ERR_738_CANNOT_ENCODE_KRB_PRIV=Cannot encode the KrbPriv object, the PDU size is {0} when only {1} bytes has been allocated -ERR_739_CANNOT_ENCODE_KRB_CRED_INFO=Cannot encode the KrbCredInfo object, the PDU size is {0} when only {1} bytes has been allocated \ No newline at end of file +ERR_739_CANNOT_ENCODE_KRB_CRED_INFO=Cannot encode the KrbCredInfo object, the PDU size is {0} when only {1} bytes has been allocated +ERR_740_CANNOT_ENCODE_ENC_KRB_CRED_PART=Cannot encode the EncKrbCredPart object, the PDU size is {0} when only {1} bytes has been allocated \ No newline at end of file