diff options
author | mrg <mrg@pkgsrc.org> | 2000-03-02 16:02:49 +0000 |
---|---|---|
committer | mrg <mrg@pkgsrc.org> | 2000-03-02 16:02:49 +0000 |
commit | efc54823472462e75916d50f4912a79174409330 (patch) | |
tree | 1637f03a6ba9a022739fdc2213267329da3d6fb8 /net | |
parent | 79aac0d7891c066f485b8ccb5bc4da25708e7c70 (diff) | |
download | pkgsrc-efc54823472462e75916d50f4912a79174409330.tar.gz |
pull across a patch from ircII-current:
- fix PR#423 from Hubert Feyrer <feyrer@rfhs8012.fh-regensburg.de>: the
MSG and DCC hooks added by the `times' script incorrectly ignored the
first word of the message.
Diffstat (limited to 'net')
-rw-r--r-- | net/ircII/files/patch-sum | 3 | ||||
-rw-r--r-- | net/ircII/patches/patch-af | 28 |
2 files changed, 30 insertions, 1 deletions
diff --git a/net/ircII/files/patch-sum b/net/ircII/files/patch-sum index 66e70395394..93f4e9b7121 100644 --- a/net/ircII/files/patch-sum +++ b/net/ircII/files/patch-sum @@ -1,7 +1,8 @@ -$NetBSD: patch-sum,v 1.11 2000/02/05 19:59:26 wiz Exp $ +$NetBSD: patch-sum,v 1.12 2000/03/02 16:02:49 mrg Exp $ MD5 (patch-aa) = 527bd5ff24957c73c8e4886d6f8d2339 MD5 (patch-ab) = fa2f44d39bc1669be9087ce8750103c1 MD5 (patch-ac) = a1297cc8a4c19898983e2420c8307160 MD5 (patch-ad) = 0d76b09f64886ca9dc2beb86ec07937f MD5 (patch-ae) = 21b33a3e38b7a07ad22939114677986a +MD5 (patch-af) = f0662b83ba9e6ae6fe66eaf26461d98c diff --git a/net/ircII/patches/patch-af b/net/ircII/patches/patch-af new file mode 100644 index 00000000000..59bba151332 --- /dev/null +++ b/net/ircII/patches/patch-af @@ -0,0 +1,28 @@ +$NetBSD: patch-af,v 1.1 2000/03/02 16:02:50 mrg Exp $ + +Index: script/times +=================================================================== +RCS file: /home/cvs/ircii/script/times,v +retrieving revision 1.1 +diff -p -c -r1.1 times +*** times 1999/12/09 10:40:36 1.1 +--- times 2000/03/02 15:54:09 +*************** +*** 1,8 **** + # + +! on ^msg * echo $Z *$0* $2- + on ^send_msg * echo $Z -> *$0* $1- +! on ^dcc * echo $Z =$0= $2- + on ^send_dcc * echo $Z -> =$0= $1- + on ^public * echo $Z <$0> $2- + on ^send_public * echo $Z > $1- +--- 1,8 ---- + # + +! on ^msg * echo $Z *$0* $1- + on ^send_msg * echo $Z -> *$0* $1- +! on ^dcc * echo $Z =$0= $1- + on ^send_dcc * echo $Z -> =$0= $1- + on ^public * echo $Z <$0> $2- + on ^send_public * echo $Z > $1- |