Return-Path: Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 67278 invoked from network); 1 Aug 2003 12:58:00 -0000 Received: from ool-182e24b7.dyn.optonline.net (HELO FancyTruk.zonesville.com) (24.46.36.183) by daedalus.apache.org with SMTP; 1 Aug 2003 12:58:00 -0000 Received: from Truk (root@localhost.zonesville.com [IPv6:::1]) by FancyTruk.zonesville.com (8.12.6/8.12.6) with ESMTP id h71D1EHx006324 for ; Fri, 1 Aug 2003 09:01:14 -0400 (EDT) Message-ID: <005601c3582c$30d5a920$200110ac@zonesville.com> From: "Kurt Miller" To: "Tomcat Developers List" References: <3F2A435F.4090407@mail.more.net> Subject: Re: [VOTE] Release mod_jk 1.2.5 Date: Fri, 1 Aug 2003 08:55:30 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N From: "Glenn Nielsen" To: Sent: Friday, August 01, 2003 6:39 AM Subject: [VOTE] Release mod_jk 1.2.5 > No problems have been reported since the last test source distribution > of mod_jk 1.2.5 was made available for testing July 26. > I've found one problem on the OpenBSD/sparc64 platform in jk_resolve. The recent change of the datatype of laddr from in_addr_t to u_long has broken this function. Could this be reverted back before release? Below is a copy of the commit that caused the problem: hgomez 2003/07/25 07:58:22 Modified: jk/native/common jk_connect.c Log: Use u_long instead of in_addr_t which make unhappy some platforms like iSeries Revision Changes Path 1.10 +2 -3 jakarta-tomcat-connectors/jk/native/common/jk_connect.c Index: jk_connect.c =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_connect.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- jk_connect.c 24 Jul 2003 08:17:10 -0000 1.9 +++ jk_connect.c 25 Jul 2003 14:58:22 -0000 1.10 @@ -110,8 +110,7 @@ int x; /* TODO: Should be updated for IPV6 support. */ - /* for now use the correct type, in_addr_t */ - in_addr_t laddr; + u_long laddr; rc->sin_port = htons((short)port); rc->sin_family = AF_INET; -Kurt