From 60331ebb6e8264788f9bc9d7998d86f1db5e4d1e Mon Sep 17 00:00:00 2001 From: kevlo Date: Sun, 15 Jul 2001 09:45:35 +0000 Subject: [PATCH] fix mismatching IPv6 numeric address --- net/p5-Net-IRC/patches/patch-Connection.pm | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 net/p5-Net-IRC/patches/patch-Connection.pm diff --git a/net/p5-Net-IRC/patches/patch-Connection.pm b/net/p5-Net-IRC/patches/patch-Connection.pm new file mode 100644 index 00000000000..7b0d02fc76f --- /dev/null +++ b/net/p5-Net-IRC/patches/patch-Connection.pm @@ -0,0 +1,11 @@ +--- Connection.pm.orig Sun Jul 15 17:38:58 2001 ++++ Connection.pm Sun Jul 15 17:39:41 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; +