diff options
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; + |