Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 25 Jun 2001 19:20:02 -0700 (PDT)
From:      Jun Kuriyama <kuriyama@imgsrc.co.jp>
To:        freebsd-ports@FreeBSD.org
Subject:   Re: ports/28378: p5-Net-IRC-0.70_1  eats irc text with colons in them
Message-ID:  <200106260220.f5Q2K2g89966@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/28378; it has been noted by GNATS.

From: Jun Kuriyama <kuriyama@imgsrc.co.jp>
To: asimov <asimov@owirc.com>
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 <kuriyama@imgsrc.co.jp> // IMG SRC, Inc.
              <kuriyama@FreeBSD.org> // FreeBSD Project

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200106260220.f5Q2K2g89966>