From mohacsi@norfolk.ki.iif.hu  Wed Feb 11 05:49:23 2004
Return-Path: <mohacsi@norfolk.ki.iif.hu>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP
	id 0E9B016A4CE; Wed, 11 Feb 2004 05:49:23 -0800 (PST)
Received: from norfolk.ki.iif.hu (norfolk.ki.iif.hu [193.6.222.32])
	by mx1.FreeBSD.org (Postfix) with ESMTP
	id 3E3C843D2F; Wed, 11 Feb 2004 05:49:22 -0800 (PST)
	(envelope-from mohacsi@norfolk.ki.iif.hu)
Received: (from mohacsi@localhost)
	by norfolk.ki.iif.hu (8.12.10/8.12.10) id i1BDtowe002307;
	Wed, 11 Feb 2004 14:55:50 +0100 (CET)
	(envelope-from mohacsi)
Message-Id: <200402111355.i1BDtowe002307@norfolk.ki.iif.hu>
Date: Wed, 11 Feb 2004 14:55:50 +0100 (CET)
From: Janos Mohacsi <mohacsi@niif.hu>
Reply-To: Janos Mohacsi <janos.mohacsi@bsd.hu>
To: FreeBSD-gnats-submit@freebsd.org
Cc: mat@freebsd.org
Subject: maintainer update: net/p5-IO-INET to version 2.01
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         62689
>Category:       ports
>Synopsis:       maintainer update: net/p5-IO-INET to version 2.01
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    mat
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Feb 11 05:50:00 PST 2004
>Closed-Date:    Wed Feb 25 04:21:35 PST 2004
>Last-Modified:  Wed Feb 25 04:21:35 PST 2004
>Originator:     Janos Mohacsi
>Release:        FreeBSD 5.2-CURRENT i386
>Organization:
NIIF
>Environment:
System: FreeBSD norfolk.ki.iif.hu 5.2-CURRENT FreeBSD 5.2-CURRENT #7: Mon Feb 9 12:12:13 CET 2004 root@norfolk.ki.iif.hu:/usr/obj/usr/src/sys/NORFOLK i386

>Description:
	Maintainer update: to net/p5-IO-INET6 to version 2.01
	original package changes: 
	- remove deprecated IPv6 API getipnode()
	- completely protocol independent now
	- more test suite
	- relies on  Socket6-0.12 or later
	- bugfixes in parse and tests
	- peerhost method fix
	port changes:
	- check existence at least of perl 5.6.1
	- mention protocol independence in pkg-descr

	This patch supercedes ports/59675 (responsible mat).

>How-To-Repeat:
	Apply this diff.
>Fix:


diff -ruN p5-IO-INET6.bak/Makefile p5-IO-INET6/Makefile
--- p5-IO-INET6.bak/Makefile	Wed Oct 29 12:04:36 2003
+++ p5-IO-INET6/Makefile	Wed Feb 11 14:42:56 2004
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	INET6
-PORTVERSION=	1.28
+PORTVERSION=	2.01
 CATEGORIES=	net perl5 ipv6
 MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
 MASTER_SITE_SUBDIR=	IO
@@ -22,4 +22,10 @@
 
 PERL_CONFIGURE=	yes
 
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${PERL_LEVEL} < 500601
+IGNORE=		Port requires perl 5.6.1 or later. Install lang/perl5 then try again
+.endif
+
+.include <bsd.port.post.mk>
diff -ruN p5-IO-INET6.bak/distinfo p5-IO-INET6/distinfo
--- p5-IO-INET6.bak/distinfo	Tue Aug 12 20:37:09 2003
+++ p5-IO-INET6/distinfo	Wed Feb 11 14:40:29 2004
@@ -1 +1,2 @@
-MD5 (INET6-1.28.tar.gz) = 799199206d8d8641e11b33c0748a313e
+MD5 (INET6-2.01.tar.gz) = 032a6e50c8c16e400836a9565cdb2f0b
+SIZE (INET6-2.01.tar.gz) = 8628
diff -ruN p5-IO-INET6.bak/files/patch-INET6.pm p5-IO-INET6/files/patch-INET6.pm
--- p5-IO-INET6.bak/files/patch-INET6.pm	Thu Jul  3 00:17:15 2003
+++ p5-IO-INET6/files/patch-INET6.pm	Thu Jan  1 01:00:00 1970
@@ -1,29 +0,0 @@
---- INET6.pm.orig	Tue Jun 24 14:14:26 2003
-+++ INET6.pm	Wed Jul  2 21:33:28 2003
-@@ -10,7 +10,7 @@
- package IO::Socket::INET6;
- 
- use strict;
--our(@ISA, $VERSION);
-+use vars qw(@ISA $VERSION);
- use IO::Socket;
- use Socket6;
- use Carp;
-@@ -20,7 +20,7 @@
- @ISA = qw(IO::Socket);
- $VERSION = "1.27";
- 
--my $EINVAL = exists(&Errno::EINVAL) ? Errno::EINVAL() : 1;
-+my $EINVAL = defined(&Errno::EINVAL) ? Errno::EINVAL() : 1;
- 
- IO::Socket::INET6->register_domain( AF_INET6 );
- 
-@@ -183,7 +183,7 @@
- 	}
- 
- 	if ($arg->{ReusePort}) {
--	    $sock->sockopt(SO_REUSEPORT,1) or
-+	    $sock->sockopt(0x0200,1) or
- 		    return _error($sock, $!, "$!");
- 	}
- 
diff -ruN p5-IO-INET6.bak/pkg-descr p5-IO-INET6/pkg-descr
--- p5-IO-INET6.bak/pkg-descr	Thu Jul  3 00:17:15 2003
+++ p5-IO-INET6/pkg-descr	Wed Feb 11 14:43:51 2004
@@ -1,5 +1,7 @@
 IO::Socket::INET6 provides an object interface to creating and using sockets
 in the AF_INET6 domain. It is built upon the IO::Socket interface and
-inherits all the methods defined by IO::Socket.
+inherits all the methods defined by IO::Socket. As a consequence, this module 
+is protocol Independent, it can run both IPv6 & IPv4, when DNS names are 
+passed.
 
 WWW: http://search.cpan.org/search?dist=IO-INET6
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->mat 
Responsible-Changed-By: mat 
Responsible-Changed-When: Wed Feb 11 05:58:27 PST 2004 
Responsible-Changed-Why:  
get this one 

http://www.freebsd.org/cgi/query-pr.cgi?pr=62689 
State-Changed-From-To: open->feedback 
State-Changed-By: mat 
State-Changed-When: Wed Feb 11 07:15:43 PST 2004 
State-Changed-Why:  


http://www.freebsd.org/cgi/query-pr.cgi?pr=62689 

From: Mathieu Arnold <mat@FreeBSD.org>
To: FreeBSD-gnats-submit@FreeBSD.org
Cc:  
Subject: Re: ports/62689: maintainer update: net/p5-IO-INET to version 2.01
Date: Wed, 11 Feb 2004 16:29:52 +0100

 --==========C1828CBC39D085D9C995==========
 Content-Type: text/plain; charset=iso-8859-1
 Content-Transfer-Encoding: quoted-printable
 Content-Disposition: inline
 
 
 
 +-le 11/02/2004 05:58 -0800, Mathieu Arnold =E9crivait :
 | Synopsis: maintainer update: net/p5-IO-INET to version 2.01
 
 I don't understand why you removed the patch and said it was only for 5.6.1.
 The only thing which needs 5.6.1 is the test with the "no utf8" which just
 say not to use utf8 at all, which is just what 5.005_03 does.
 
 --=20
 Mathieu Arnold
 --==========C1828CBC39D085D9C995==========
 Content-Type: application/pgp-signature
 Content-Transfer-Encoding: 7bit
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.2.4 (MingW32)
 
 iQEVAwUBQCpKclvROjYJ63c1AQJcFAf/UtYwz4H2LPrXq5tr0y3v2cwycoaNLGii
 O2NPh+lUbpGcP1rS1A+2+nv3tm7xfBzUhsG3wY9GM4QgWHjsl7p/xvEQcFdFX5if
 Z5NUHaCYml7ntJnyHt+mAaIq5vTWEEXQAuLKfJfZGHC5qQo9r2pOOVjnn+7uiZm+
 Ju7OczQwb4C4HNLw6RmhkEi13I4fz5U7wrINtuVWJ3i+zmAlh34ZUEH32nxaYOk6
 DvH2BPyeAy9DM69A0bxlfB2UsiuqSMcM9OfyLwrvwnPaiKv4GM4ADWVQhXBZs117
 FeenE35D3nE3YgTitkBC42D8QzXbYuN97/r9fRMPyzI1drlpMo43mw==
 =Bln5
 -----END PGP SIGNATURE-----
 
 --==========C1828CBC39D085D9C995==========--
 

From: Mohacsi Janos <mohacsi@niif.hu>
To: freebsd-gnats-submit@freebsd.org
Cc: Mathieu Arnold <mat@FreeBSD.org>, freebsd-ports-bugs@FreeBSD.org
Subject: Re: ports/62689: maintainer update: net/p5-IO-INET to version 2.01
Date: Mon, 23 Feb 2004 14:29:58 +0100 (CET)

 Hi Mathieu,
 
 =09If you look at the patch you can find, that
 the 'our' keyword and SO_REUSEPORT socket option is missing in perl
 version 5.005_03. It is not related to utf8. I decided to require at least
 version 5.6 for this module. I know this is painful for FreeBSD 4.x
 users ...
 
 
 Best Regards,
 
 Janos Mohacsi
 Network Engineer, Research Associate
 NIIF/HUNGARNET, HUNGARY
 Key 00F9AF98: 8645 1312 D249 471B DBAE  21A2 9F52 0D1F 00F9 AF98
 
 On Wed, 11 Feb 2004, Mathieu Arnold wrote:
 
 >
 >
 > +-le 11/02/2004 05:58 -0800, Mathieu Arnold =E9crivait :
 > | Synopsis: maintainer update: net/p5-IO-INET to version 2.01
 >
 > I don't understand why you removed the patch and said it was only for 5.6=
 =2E1.
 > The only thing which needs 5.6.1 is the test with the "no utf8" which jus=
 t
 > say not to use utf8 at all, which is just what 5.005_03 does.
 >
 > --
 > Mathieu Arnold

From: Mathieu Arnold <mat@FreeBSD.org>
To: Mohacsi Janos <mohacsi@niif.hu>, freebsd-gnats-submit@freebsd.org
Cc: freebsd-ports-bugs@FreeBSD.org
Subject: Re: ports/62689: maintainer update: net/p5-IO-INET to version 2.01
Date: Mon, 23 Feb 2004 14:42:26 +0100

 --==========91D0D0901966E3E7947F==========
 Content-Type: text/plain; charset=us-ascii
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline
 
 
 
 +-Le 23/02/2004 14:29 +0100, Mohacsi Janos a dit :
 | Hi Mathieu,
 | 
 | 	If you look at the patch you can find, that
 | the 'our' keyword and SO_REUSEPORT socket option is missing in perl
 | version 5.005_03. It is not related to utf8. I decided to require at least
 | version 5.6 for this module. I know this is painful for FreeBSD 4.x
 | users ...
 
 Well, the patch did just what was needed to replace the 'our' and
 SO_REUSEPORT, so I don't understand...
 
 
 -- 
 Mathieu Arnold
 --==========91D0D0901966E3E7947F==========
 Content-Type: application/pgp-signature
 Content-Transfer-Encoding: 7bit
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.2.4 (MingW32)
 
 iQEVAwUBQDoDRFvROjYJ63c1AQIzwQf/VLzA+U60LzHacFergn7X16HlsNJWB9je
 5UBhh752awZKe+hY4XmwfMtFhac0njhbJKD4Bp1RXSnCTHNxdgYuK+oiwXOOsC2s
 qizqctO/yLUcAMxxNES1kO//+yfdtqb1j8zS65w3Iiu8N33Hv8E6fGyVmja9lvJR
 sJiIxY8mo1Fwc6f6JBQCxGBCRtGq5EyLP9LCIUgULrDW1WJz62RFRdHOHYQezN30
 F+Qpwzr/3ahv4Aypwl4nFtpdpDmfHiRLzBTYh34dtypbsvc8OEk9oKAa+jyOm213
 3rxnEvrl2SKYcUqjXdnVwZ7rwpT/cptjpV1aCaFyKUwVBe1tdeub/w==
 =CGZn
 -----END PGP SIGNATURE-----
 
 --==========91D0D0901966E3E7947F==========--
 

From: Mohacsi Janos <mohacsi@niif.hu>
To: freebsd-gnats-submit@freebsd.org,
	Mathieu Arnold <mat@FreeBSD.org>
Cc: freebsd-ports-bugs@FreeBSD.org
Subject: Re: ports/62689: maintainer update: net/p5-IO-INET to version 2.01
Date: Mon, 23 Feb 2004 14:58:51 +0100 (CET)

 Hi Mathieu,
 
 On Mon, 23 Feb 2004, Mathieu Arnold wrote:
 
 >
 >
 > +-Le 23/02/2004 14:29 +0100, Mohacsi Janos a dit :
 > | Hi Mathieu,
 > |
 > | 	If you look at the patch you can find, that
 > | the 'our' keyword and SO_REUSEPORT socket option is missing in perl
 > | version 5.005_03. It is not related to utf8. I decided to require at least
 > | version 5.6 for this module. I know this is painful for FreeBSD 4.x
 > | users ...
 >
 > Well, the patch did just what was needed to replace the 'our' and
 > SO_REUSEPORT, so I don't understand...
 
 The reasoning is following:
 - According to the Perl developers the current stable release is 5.8.3. We
 really should not stick to the old, not really maintained release.
 
 - The developer of the p5-IO-INET6 port is working with perl version
 5.8.x. I can easily test on perl 5.6.x and 5.8.x., therefore maintain the
 port. Testing on 5.005 is much more difficult for me ...
 
 - Please speak up (in a personal e-mail) if you want to keep the
 compatibility with 5.005_03. If I receive more than one e-mail, I will
 continue maintain the 5.005_03 compatibility.
 
 - Anyway there is a method to apply a patch if a certain perl version is
 not installed?
 
 Best Regards,

From: Mathieu Arnold <mat@FreeBSD.org>
To: Mohacsi Janos <mohacsi@niif.hu>, freebsd-gnats-submit@freebsd.org
Cc: freebsd-ports-bugs@FreeBSD.org
Subject: Re: ports/62689: maintainer update: net/p5-IO-INET to version 2.01
Date: Mon, 23 Feb 2004 15:08:11 +0100

 --==========253591B1B81BD91888DA==========
 Content-Type: text/plain; charset=us-ascii
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline
 
 +-Le 23/02/2004 14:58 +0100, Mohacsi Janos a dit :
 | Hi Mathieu,
 | 
 | On Mon, 23 Feb 2004, Mathieu Arnold wrote:
 | 
 |> 
 |> 
 |> +-Le 23/02/2004 14:29 +0100, Mohacsi Janos a dit :
 |> | Hi Mathieu,
 |> | 
 |> | 	If you look at the patch you can find, that
 |> | the 'our' keyword and SO_REUSEPORT socket option is missing in perl
 |> | version 5.005_03. It is not related to utf8. I decided to require at
 |> | least version 5.6 for this module. I know this is painful for FreeBSD
 |> | 4.x users ...
 |> 
 |> Well, the patch did just what was needed to replace the 'our' and
 |> SO_REUSEPORT, so I don't understand...
 | 
 | The reasoning is following:
 | - According to the Perl developers the current stable release is 5.8.3. We
 | really should not stick to the old, not really maintained release.
 | 
 | - The developer of the p5-IO-INET6 port is working with perl version
 | 5.8.x. I can easily test on perl 5.6.x and 5.8.x., therefore maintain the
 | port. Testing on 5.005 is much more difficult for me ...
 | 
 | - Please speak up (in a personal e-mail) if you want to keep the
 | compatibility with 5.005_03. If I receive more than one e-mail, I will
 | continue maintain the 5.005_03 compatibility.
 | 
 | - Anyway there is a method to apply a patch if a certain perl version is
 | not installed?
 
 Well, until 5-STABLE is branched, we'll have too :)
 the easiest thing is like it's done in mail/p5-Net-Server-Mail/Makefile
 add some EXTRA_PATCHES with a patch in files directory named like I did for
 instance.
 
 -- 
 Mathieu Arnold
 --==========253591B1B81BD91888DA==========
 Content-Type: application/pgp-signature
 Content-Transfer-Encoding: 7bit
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.2.4 (MingW32)
 
 iQEVAwUBQDoJTVvROjYJ63c1AQKMhAf/WnvmA+cFMHzStUpRZ4aAdkSBLvJCwBil
 e836NDyJN5Vmcccdjp6KsQa0Ru7nr+/2KTzma0wzHHIj6oPgNdzT9U+PO+Tp+6MO
 6ebpBRAKTAccfgwJXTjMQNeKuWCDevG0RhDxNF8s90Y4ogM50jad8V6OKXaMq+Xn
 ZjcK+x9E70qpBoamlgwfhFKd5X0gdgyIHfLDQU0T5zPBBW1YfthUsN8E7IDy3ib8
 07zr1DnXfbaBuUOda3Dh0hZpzZndGD+22f0UTYL+XhAzgOd3g+yuWSpfYkQRofr7
 ki2ewOddht8mBCSIFT1tdhDQdlxIJPgte1VhFKZpNgpeKca0cPPe1A==
 =eihU
 -----END PGP SIGNATURE-----
 
 --==========253591B1B81BD91888DA==========--
 

From: Mohacsi Janos <mohacsi@niif.hu>
To: freebsd-gnats-submit@freebsd.org,
	Mathieu Arnold <mat@FreeBSD.org>
Cc: freebsd-ports-bugs@FreeBSD.org
Subject: Re: ports/62689: maintainer update: net/p5-IO-INET to version 2.01
Date: Mon, 23 Feb 2004 19:09:30 +0100 (CET)

   This message is in MIME format.  The first part should be readable text,
   while the remaining parts are likely unreadable without MIME-aware tools.
   Send mail to mime@docserver.cac.washington.edu for more info.
 
 --0-273828861-1077559770=:42031
 Content-Type: TEXT/PLAIN; charset=US-ASCII
 
 Hi Mathieu,
 
 Here I send the modified diff to the net/p5-IO-INET that makes usable on
 perl 5.005_03 also.
 
 Best Regards,
 	Janos Mohacsi
 
 >
 > Well, until 5-STABLE is branched, we'll have too :)
 > the easiest thing is like it's done in mail/p5-Net-Server-Mail/Makefile
 > add some EXTRA_PATCHES with a patch in files directory named like I did for
 > instance.
 >
 --0-273828861-1077559770=:42031
 Content-Type: TEXT/PLAIN; charset=US-ASCII; name="p5-IO-INET6.diff2"
 Content-Transfer-Encoding: BASE64
 Content-ID: <20040223190930.W42031@mignon.ki.iif.hu>
 Content-Description: 
 Content-Disposition: attachment; filename="p5-IO-INET6.diff2"
 
 ZGlmZiAtcnVOIHA1LUlPLUlORVQ2Lm9sZC9NYWtlZmlsZSBwNS1JTy1JTkVU
 Ni9NYWtlZmlsZQ0KLS0tIHA1LUlPLUlORVQ2Lm9sZC9NYWtlZmlsZQlGcmkg
 T2N0IDI0IDE0OjAyOjU3IDIwMDMNCisrKyBwNS1JTy1JTkVUNi9NYWtlZmls
 ZQlNb24gRmViIDIzIDE4OjQ3OjQ3IDIwMDQNCkBAIC02LDcgKzYsNyBAQA0K
 ICMNCiANCiBQT1JUTkFNRT0JSU5FVDYNCi1QT1JUVkVSU0lPTj0JMS4yOA0K
 K1BPUlRWRVJTSU9OPQkyLjAxDQogQ0FURUdPUklFUz0JbmV0IHBlcmw1IGlw
 djYNCiBNQVNURVJfU0lURVM9CSR7TUFTVEVSX1NJVEVfUEVSTF9DUEFOfQ0K
 IE1BU1RFUl9TSVRFX1NVQkRJUj0JSU8NCkBAIC0yMiw0ICsyMiwxMCBAQA0K
 IA0KIFBFUkxfQ09ORklHVVJFPQl5ZXMNCiANCi0uaW5jbHVkZSA8YnNkLnBv
 cnQubWs+DQorLmluY2x1ZGUgPGJzZC5wb3J0LnByZS5taz4NCisNCisuaWYg
 JHtQRVJMX0xFVkVMfSA8IDUwMDYwMA0KK0VYVFJBX1BBVENIRVM9CSR7UEFU
 Q0hESVJ9LzUuMDA1XzAzLmRpZmYNCisuZW5kaWYNCisNCisuaW5jbHVkZSA8
 YnNkLnBvcnQucG9zdC5taz4NCmRpZmYgLXJ1TiBwNS1JTy1JTkVUNi5vbGQv
 ZGlzdGluZm8gcDUtSU8tSU5FVDYvZGlzdGluZm8NCi0tLSBwNS1JTy1JTkVU
 Ni5vbGQvZGlzdGluZm8JVHVlIEF1ZyAxMiAyMDozNzowOSAyMDAzDQorKysg
 cDUtSU8tSU5FVDYvZGlzdGluZm8JTW9uIEZlYiAyMyAxODo0NTo0OSAyMDA0
 DQpAQCAtMSArMSwyIEBADQotTUQ1IChJTkVUNi0xLjI4LnRhci5neikgPSA3
 OTkxOTkyMDZkOGQ4NjQxZTExYjMzYzA3NDhhMzEzZQ0KK01ENSAoSU5FVDYt
 Mi4wMS50YXIuZ3opID0gMDMyYTZlNTBjOGMxNmU0MDA4MzZhOTU2NWNkYjJm
 MGINCitTSVpFIChJTkVUNi0yLjAxLnRhci5neikgPSA4NjI4DQpkaWZmIC1y
 dU4gcDUtSU8tSU5FVDYub2xkL2ZpbGVzLzUuMDA1XzAzLmRpZmYgcDUtSU8t
 SU5FVDYvZmlsZXMvNS4wMDVfMDMuZGlmZg0KLS0tIHA1LUlPLUlORVQ2Lm9s
 ZC9maWxlcy81LjAwNV8wMy5kaWZmCVRodSBKYW4gIDEgMDE6MDA6MDAgMTk3
 MA0KKysrIHA1LUlPLUlORVQ2L2ZpbGVzLzUuMDA1XzAzLmRpZmYJVGh1IEp1
 bCAgMyAwMDoxNzoxNSAyMDAzDQpAQCAtMCwwICsxLDI5IEBADQorLS0tIElO
 RVQ2LnBtLm9yaWcJVHVlIEp1biAyNCAxNDoxNDoyNiAyMDAzDQorKysrIElO
 RVQ2LnBtCVdlZCBKdWwgIDIgMjE6MzM6MjggMjAwMw0KK0BAIC0xMCw3ICsx
 MCw3IEBADQorIHBhY2thZ2UgSU86OlNvY2tldDo6SU5FVDY7DQorIA0KKyB1
 c2Ugc3RyaWN0Ow0KKy1vdXIoQElTQSwgJFZFUlNJT04pOw0KKyt1c2UgdmFy
 cyBxdyhASVNBICRWRVJTSU9OKTsNCisgdXNlIElPOjpTb2NrZXQ7DQorIHVz
 ZSBTb2NrZXQ2Ow0KKyB1c2UgQ2FycDsNCitAQCAtMjAsNyArMjAsNyBAQA0K
 KyBASVNBID0gcXcoSU86OlNvY2tldCk7DQorICRWRVJTSU9OID0gIjEuMjci
 Ow0KKyANCistbXkgJEVJTlZBTCA9IGV4aXN0cygmRXJybm86OkVJTlZBTCkg
 PyBFcnJubzo6RUlOVkFMKCkgOiAxOw0KKytteSAkRUlOVkFMID0gZGVmaW5l
 ZCgmRXJybm86OkVJTlZBTCkgPyBFcnJubzo6RUlOVkFMKCkgOiAxOw0KKyAN
 CisgSU86OlNvY2tldDo6SU5FVDYtPnJlZ2lzdGVyX2RvbWFpbiggQUZfSU5F
 VDYgKTsNCisgDQorQEAgLTE4Myw3ICsxODMsNyBAQA0KKyAJfQ0KKyANCisg
 CWlmICgkYXJnLT57UmV1c2VQb3J0fSkgew0KKy0JICAgICRzb2NrLT5zb2Nr
 b3B0KFNPX1JFVVNFUE9SVCwxKSBvcg0KKysJICAgICRzb2NrLT5zb2Nrb3B0
 KDB4MDIwMCwxKSBvcg0KKyAJCSAgICByZXR1cm4gX2Vycm9yKCRzb2NrLCAk
 ISwgIiQhIik7DQorIAl9DQorIA0KZGlmZiAtcnVOIHA1LUlPLUlORVQ2Lm9s
 ZC9maWxlcy9wYXRjaC1JTkVUNi5wbSBwNS1JTy1JTkVUNi9maWxlcy9wYXRj
 aC1JTkVUNi5wbQ0KLS0tIHA1LUlPLUlORVQ2Lm9sZC9maWxlcy9wYXRjaC1J
 TkVUNi5wbQlUaHUgSnVsICAzIDAwOjE3OjE1IDIwMDMNCisrKyBwNS1JTy1J
 TkVUNi9maWxlcy9wYXRjaC1JTkVUNi5wbQlUaHUgSmFuICAxIDAxOjAwOjAw
 IDE5NzANCkBAIC0xLDI5ICswLDAgQEANCi0tLS0gSU5FVDYucG0ub3JpZwlU
 dWUgSnVuIDI0IDE0OjE0OjI2IDIwMDMNCi0rKysgSU5FVDYucG0JV2VkIEp1
 bCAgMiAyMTozMzoyOCAyMDAzDQotQEAgLTEwLDcgKzEwLDcgQEANCi0gcGFj
 a2FnZSBJTzo6U29ja2V0OjpJTkVUNjsNCi0gDQotIHVzZSBzdHJpY3Q7DQot
 LW91cihASVNBLCAkVkVSU0lPTik7DQotK3VzZSB2YXJzIHF3KEBJU0EgJFZF
 UlNJT04pOw0KLSB1c2UgSU86OlNvY2tldDsNCi0gdXNlIFNvY2tldDY7DQot
 IHVzZSBDYXJwOw0KLUBAIC0yMCw3ICsyMCw3IEBADQotIEBJU0EgPSBxdyhJ
 Tzo6U29ja2V0KTsNCi0gJFZFUlNJT04gPSAiMS4yNyI7DQotIA0KLS1teSAk
 RUlOVkFMID0gZXhpc3RzKCZFcnJubzo6RUlOVkFMKSA/IEVycm5vOjpFSU5W
 QUwoKSA6IDE7DQotK215ICRFSU5WQUwgPSBkZWZpbmVkKCZFcnJubzo6RUlO
 VkFMKSA/IEVycm5vOjpFSU5WQUwoKSA6IDE7DQotIA0KLSBJTzo6U29ja2V0
 OjpJTkVUNi0+cmVnaXN0ZXJfZG9tYWluKCBBRl9JTkVUNiApOw0KLSANCi1A
 QCAtMTgzLDcgKzE4Myw3IEBADQotIAl9DQotIA0KLSAJaWYgKCRhcmctPntS
 ZXVzZVBvcnR9KSB7DQotLQkgICAgJHNvY2stPnNvY2tvcHQoU09fUkVVU0VQ
 T1JULDEpIG9yDQotKwkgICAgJHNvY2stPnNvY2tvcHQoMHgwMjAwLDEpIG9y
 DQotIAkJICAgIHJldHVybiBfZXJyb3IoJHNvY2ssICQhLCAiJCEiKTsNCi0g
 CX0NCi0gDQpkaWZmIC1ydU4gcDUtSU8tSU5FVDYub2xkL3BrZy1kZXNjciBw
 NS1JTy1JTkVUNi9wa2ctZGVzY3INCi0tLSBwNS1JTy1JTkVUNi5vbGQvcGtn
 LWRlc2NyCVRodSBKdWwgIDMgMDA6MTc6MTUgMjAwMw0KKysrIHA1LUlPLUlO
 RVQ2L3BrZy1kZXNjcglNb24gRmViIDIzIDE4OjQ1OjQ5IDIwMDQNCkBAIC0x
 LDUgKzEsNyBAQA0KIElPOjpTb2NrZXQ6OklORVQ2IHByb3ZpZGVzIGFuIG9i
 amVjdCBpbnRlcmZhY2UgdG8gY3JlYXRpbmcgYW5kIHVzaW5nIHNvY2tldHMN
 CiBpbiB0aGUgQUZfSU5FVDYgZG9tYWluLiBJdCBpcyBidWlsdCB1cG9uIHRo
 ZSBJTzo6U29ja2V0IGludGVyZmFjZSBhbmQNCi1pbmhlcml0cyBhbGwgdGhl
 IG1ldGhvZHMgZGVmaW5lZCBieSBJTzo6U29ja2V0Lg0KK2luaGVyaXRzIGFs
 bCB0aGUgbWV0aG9kcyBkZWZpbmVkIGJ5IElPOjpTb2NrZXQuIEFzIGEgY29u
 c2VxdWVuY2UsIHRoaXMgbW9kdWxlIA0KK2lzIHByb3RvY29sIGluZGVwZW5k
 ZW50LCBpdCBjYW4gcnVuIGJvdGggSVB2NiAmIElQdjQsIHdoZW4gRE5TIG5h
 bWVzIGFyZSANCitwYXNzZWQuDQogDQogV1dXOiBodHRwOi8vc2VhcmNoLmNw
 YW4ub3JnL3NlYXJjaD9kaXN0PUlPLUlORVQ2DQo=
 
 --0-273828861-1077559770=:42031--
State-Changed-From-To: feedback->closed 
State-Changed-By: mat 
State-Changed-When: Wed Feb 25 04:20:24 PST 2004 
State-Changed-Why:  
Committed, thanks :) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=62689 
>Unformatted:
