From owner-freebsd-ports@FreeBSD.ORG Sat Dec 15 18:16:40 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 71E5BB18; Sat, 15 Dec 2012 18:16:40 +0000 (UTC) (envelope-from ume@mahoroba.org) Received: from mail.mahoroba.org (ent.mahoroba.org [IPv6:2001:2f0:104:8010::1]) by mx1.freebsd.org (Postfix) with ESMTP id 0884B8FC12; Sat, 15 Dec 2012 18:16:39 +0000 (UTC) Received: from yuga.mahoroba.org (ume@yuga.mahoroba.org [IPv6:2001:2f0:104:8010:7258:12ff:fe22:d94b]) (user=ume mech=DIGEST-MD5 bits=0) by mail.mahoroba.org (8.14.5/8.14.5) with ESMTP/inet6 id qBFIGIYN015961 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Sun, 16 Dec 2012 03:16:25 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Sun, 16 Dec 2012 03:16:18 +0900 Message-ID: From: Hajimu UMEMOTO To: vermaden Subject: Re: sysutils/agedu In-Reply-To: References: User-Agent: xcite1.60> Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?ISO-2022-JP-2?B?R29qGyQoRCtXGyhC?=) APEL/10.8 Emacs/24.2 (i386-portbld-freebsd9.1) MULE/6.0 (HANACHIRUSATO) X-Operating-System: FreeBSD 9.1-PRERELEASE X-PGP-Key: http://www.mahoroba.org/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/mixed; boundary="Multipart_Sun_Dec_16_03:16:18_2012-1" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (mail.mahoroba.org [IPv6:2001:2f0:104:8010::1]); Sun, 16 Dec 2012 03:16:25 +0900 (JST) X-Virus-Scanned: clamav-milter 0.97.6 at asuka.mahoroba.org X-Virus-Status: Clean X-Spam-Status: No, score=-5.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on asuka.mahoroba.org Cc: sunpoet@FreeBSD.org, freebsd-ports@FreeBSD.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Dec 2012 18:16:40 -0000 --Multipart_Sun_Dec_16_03:16:18_2012-1 Content-Type: text/plain; charset=US-ASCII Hi, >>>>> On Fri, 14 Dec 2012 13:06:19 +0100 >>>>> vermaden said: vermaden> Stille the same after last update to 9723: vermaden> % agedu -w vermaden> getaddrinfo: Invalid value for hints `hints' is not initialized. It should be fixed with the attached patch. Sincerely, --Multipart_Sun_Dec_16_03:16:18_2012-1 Content-Type: text/x-patch; charset=US-ASCII Content-Disposition: attachment; filename="patch-httpd.c" Content-Transfer-Encoding: 7bit Index: httpd.c diff -u -p httpd.c.orig httpd.c --- httpd.c.orig 2012-12-16 02:51:33.000000000 +0900 +++ httpd.c 2012-12-16 03:02:19.765871018 +0900 @@ -566,6 +566,7 @@ static int make_listening_sockets(struct struct addrinfo hints; struct addrinfo *addrs, *ai; + memset(&hints, 0, sizeof(hints)); hints.ai_family = AF_UNSPEC; hints.ai_socktype = SOCK_STREAM; hints.ai_protocol = 0; -- Hajimu UMEMOTO ume@mahoroba.org ume@{,jp.}FreeBSD.org http://www.mahoroba.org/~ume/ --Multipart_Sun_Dec_16_03:16:18_2012-1--