diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2001-06-13 12:30:57 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2001-06-13 12:30:57 +0000 |
commit | 831fd5de6188e26478522669a12d1449214ac8ce (patch) | |
tree | 4ad933039b91809f29685d18533cfee470b0b9d9 /irc/p5-IRC/files/patch-Connection.pm | |
parent | Change maintainer over to k_nishizawa@anet.ne.jp (diff) |
Fix mismatching IPv6 numeric address.
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=43940
Diffstat (limited to 'irc/p5-IRC/files/patch-Connection.pm')
-rw-r--r-- | irc/p5-IRC/files/patch-Connection.pm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/irc/p5-IRC/files/patch-Connection.pm b/irc/p5-IRC/files/patch-Connection.pm new file mode 100644 index 000000000000..8fcabb849ef4 --- /dev/null +++ b/irc/p5-IRC/files/patch-Connection.pm @@ -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; + |