From owner-freebsd-ports Mon Jun 25 19:20: 5 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C8A4737B405 for ; Mon, 25 Jun 2001 19:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5Q2K2g89966; Mon, 25 Jun 2001 19:20:02 -0700 (PDT) (envelope-from gnats) Date: Mon, 25 Jun 2001 19:20:02 -0700 (PDT) Message-Id: <200106260220.f5Q2K2g89966@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jun Kuriyama Subject: Re: ports/28378: p5-Net-IRC-0.70_1 eats irc text with colons in them Reply-To: Jun Kuriyama Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/28378; it has been noted by GNATS. From: Jun Kuriyama To: asimov Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/28378: p5-Net-IRC-0.70_1 eats irc text with colons in them Date: Tue, 26 Jun 2001 11:11:14 +0900 Could you try new patch "patch-Connection.pm" attached below? --- Connection.pm.orig Tue May 30 07:12:02 2000 +++ Connection.pm Wed Jun 13 17:01:06 2001 @@ -1101,7 +1101,7 @@ /x) # That ought to do it for now... { $line = substr $line, 1 if $line =~ /^:/; - ($from, $line) = split ":", $line, 2; + ($from, $line) = $line =~ m/^(\S+\s.*?):(.*)$/; ($from, $type, @stuff) = split /\s+/, $from; $type = lc $type; -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message