Return-Path: Delivered-To: apmail-incubator-directory-cvs-archive@www.apache.org Received: (qmail 27621 invoked from network); 9 Jan 2005 05:40:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 9 Jan 2005 05:40:42 -0000 Received: (qmail 6836 invoked by uid 500); 9 Jan 2005 05:40:41 -0000 Delivered-To: apmail-incubator-directory-cvs-archive@incubator.apache.org Received: (qmail 6794 invoked by uid 500); 9 Jan 2005 05:40:41 -0000 Mailing-List: contact directory-cvs-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: directory-dev@incubator.apache.org Delivered-To: mailing list directory-cvs@incubator.apache.org Received: (qmail 6781 invoked by uid 99); 9 Jan 2005 05:40:41 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Sat, 08 Jan 2005 21:40:40 -0800 Received: (qmail 27593 invoked by uid 65534); 9 Jan 2005 05:40:38 -0000 Date: 9 Jan 2005 05:40:38 -0000 Message-ID: <20050109054038.27591.qmail@minotaur.apache.org> From: erodriguez@apache.org To: directory-cvs@incubator.apache.org Subject: svn commit: r124703 - /incubator/directory/dhcp/trunk/core/src/java/org/apache/dhcp/options/dhcp/ClientIdentifier.java MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: erodriguez Date: Sat Jan 8 21:40:37 2005 New Revision: 124703 URL: http://svn.apache.org/viewcvs?view=rev&rev=124703 Log: Caught future bug. Modified: incubator/directory/dhcp/trunk/core/src/java/org/apache/dhcp/options/dhcp/ClientIdentifier.java Modified: incubator/directory/dhcp/trunk/core/src/java/org/apache/dhcp/options/dhcp/ClientIdentifier.java Url: http://svn.apache.org/viewcvs/incubator/directory/dhcp/trunk/core/src/java/org/apache/dhcp/options/dhcp/ClientIdentifier.java?view=diff&rev=124703&p1=incubator/directory/dhcp/trunk/core/src/java/org/apache/dhcp/options/dhcp/ClientIdentifier.java&r1=124702&p2=incubator/directory/dhcp/trunk/core/src/java/org/apache/dhcp/options/dhcp/ClientIdentifier.java&r2=124703 ============================================================================== --- incubator/directory/dhcp/trunk/core/src/java/org/apache/dhcp/options/dhcp/ClientIdentifier.java (original) +++ incubator/directory/dhcp/trunk/core/src/java/org/apache/dhcp/options/dhcp/ClientIdentifier.java Sat Jan 8 21:40:37 2005 @@ -51,7 +51,7 @@ public ClientIdentifier( byte[] clientIdentifier ) { - super( 61, 1 ); + super( 61, 2 ); this.clientIdentifier = clientIdentifier; }