Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 20646 invoked from network); 2 Sep 2008 10:45:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Sep 2008 10:45:59 -0000 Received: (qmail 56811 invoked by uid 500); 2 Sep 2008 10:45:58 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 56784 invoked by uid 500); 2 Sep 2008 10:45:57 -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 56775 invoked by uid 99); 2 Sep 2008 10:45:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Sep 2008 03:45:57 -0700 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; Tue, 02 Sep 2008 10:45:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 82FEF2388986; Tue, 2 Sep 2008 03:45:38 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r691191 - /harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysock.c Date: Tue, 02 Sep 2008 10:45:37 -0000 To: commits@harmony.apache.org From: hindessm@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080902104538.82FEF2388986@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: hindessm Date: Tue Sep 2 03:45:36 2008 New Revision: 691191 URL: http://svn.apache.org/viewvc?rev=691191&view=rev Log: Another occurrence of the spurious '&' removed in r691184. Modified: harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysock.c Modified: harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysock.c URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysock.c?rev=691191&r1=691190&r2=691191&view=diff ============================================================================== --- harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysock.c (original) +++ harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysock.c Tue Sep 2 03:45:36 2008 @@ -4564,9 +4564,8 @@ sizeof (struct in6_addr); interfaces[currentAdapterIndex]. addresses[currentIPAddressIndex].scope = - &(((struct sockaddr_in6 *) (¤tIfReq-> - ifr_addr))-> - sin6_scope_id); + ((struct sockaddr_in6 *) (¤tIfReq-> + ifr_addr))->sin6_scope_id; currentIPAddressIndex++; } #endif @@ -4821,7 +4820,7 @@ interfaces[currentAdapterIndex]. addresses[currentIPAddressIndex].scope = ((struct sockaddr_in6 *) (&ifc.ifc_req[counter]. - ifr_addr))->sin6_scope_id; + ifr_addr))->sin6_scope_id; currentIPAddressIndex++; } #endif