Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 51343 invoked from network); 7 Feb 2009 18:35:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Feb 2009 18:35:17 -0000 Received: (qmail 96368 invoked by uid 500); 7 Feb 2009 18:35:17 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 96332 invoked by uid 500); 7 Feb 2009 18:35:17 -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 96323 invoked by uid 99); 7 Feb 2009 18:35:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Feb 2009 10:35:17 -0800 X-ASF-Spam-Status: No, hits=-1998.8 required=10.0 tests=ALL_TRUSTED,FS_REPLICA 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; Sat, 07 Feb 2009 18:35:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 01F392388999; Sat, 7 Feb 2009 18:34:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r741933 - /directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/message/control/replication/SynchronizationModeEnum.java Date: Sat, 07 Feb 2009 18:34:56 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090207183457.01F392388999@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elecharny Date: Sat Feb 7 18:34:56 2009 New Revision: 741933 URL: http://svn.apache.org/viewvc?rev=741933&view=rev Log: Fixed the values Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/message/control/replication/SynchronizationModeEnum.java Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/message/control/replication/SynchronizationModeEnum.java URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/message/control/replication/SynchronizationModeEnum.java?rev=741933&r1=741932&r2=741933&view=diff ============================================================================== --- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/message/control/replication/SynchronizationModeEnum.java (original) +++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/message/control/replication/SynchronizationModeEnum.java Sat Feb 7 18:34:56 2009 @@ -40,8 +40,8 @@ { UNUSED(0), REFRESH_ONLY(1), - RESERVED(3), - REFRESH_AND_PERSIST(4); + RESERVED(2), + REFRESH_AND_PERSIST(3); /** The internal value */ private int value;