Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Jun 2001 19:47:28 +0900
From:      Jun Kuriyama <kuriyama@imgsrc.co.jp>
To:        jedgar@fxp.org
Cc:        Ports Team <ports@FreeBSD.org>
Subject:   p5-IRC patch
Message-ID:  <7mofrslkqn.wl@waterblue.imgsrc.co.jp>

next in thread | raw e-mail | index | archive | help
--Multipart_Wed_Jun_13_19:47:28_2001-1
Content-Type: text/plain; charset=US-ASCII


Hi Chris,

I made a patch to fix mismatching of numeric IPv6 address.  Can I
commit this?


-- 
Jun Kuriyama <kuriyama@imgsrc.co.jp> // IMG SRC, Inc.
             <kuriyama@FreeBSD.org> // FreeBSD Project

--Multipart_Wed_Jun_13_19:47:28_2001-1
Content-Type: application/octet-stream; type=patch
Content-Disposition: attachment; filename="p5-IRC.diff"
Content-Transfer-Encoding: 7bit

Index: files/patch-Connection.pm
===================================================================
RCS file: patch-Connection.pm
diff -N patch-Connection.pm
--- /dev/null	Wed Jun 13 19:44:01 2001
+++ patch-Connection.pm	Wed Jun 13 17:01:42 2001
@@ -0,0 +1,11 @@
+--- 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/^(.*):(.*?)$/;
+ 	    ($from, $type, @stuff) = split /\s+/, $from;
+ 	    $type = lc $type;
+ 	    

--Multipart_Wed_Jun_13_19:47:28_2001-1--

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?7mofrslkqn.wl>