diff options
Diffstat (limited to 'chat/micq')
-rw-r--r-- | chat/micq/Makefile | 4 | ||||
-rw-r--r-- | chat/micq/distinfo | 8 | ||||
-rw-r--r-- | chat/micq/patches/patch-ab | 17 | ||||
-rw-r--r-- | chat/micq/patches/patch-ac | 13 |
4 files changed, 5 insertions, 37 deletions
diff --git a/chat/micq/Makefile b/chat/micq/Makefile index 845114d56ef..ed0dc38013e 100644 --- a/chat/micq/Makefile +++ b/chat/micq/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2001/11/28 17:30:38 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2002/06/14 22:16:35 itojun Exp $ -DISTNAME= micq-0.4.7 +DISTNAME= micq-0.4.9 CATEGORIES= chat MASTER_SITES= http://micq.ukeer.de/source/ EXTRACT_SUFX= .tgz diff --git a/chat/micq/distinfo b/chat/micq/distinfo index cf2b99b3d1c..72001c858d5 100644 --- a/chat/micq/distinfo +++ b/chat/micq/distinfo @@ -1,6 +1,4 @@ -$NetBSD: distinfo,v 1.4 2001/11/28 17:30:38 wiz Exp $ +$NetBSD: distinfo,v 1.5 2002/06/14 22:16:35 itojun Exp $ -SHA1 (micq-0.4.7.tgz) = 9eafac726ba1766c365c3fe13c93bd2846d0e558 -Size (micq-0.4.7.tgz) = 254626 bytes -SHA1 (patch-ab) = a2f834722669baa3371a1e2cfb0a819d56cb279e -SHA1 (patch-ac) = 3d10352b5bbd2717874384154ca4a58e22a04f7d +SHA1 (micq-0.4.9.tgz) = 6641c416964e8abd694a062409395f2173c381b9 +Size (micq-0.4.9.tgz) = 419381 bytes diff --git a/chat/micq/patches/patch-ab b/chat/micq/patches/patch-ab deleted file mode 100644 index 4d0d9a9b38d..00000000000 --- a/chat/micq/patches/patch-ab +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-ab,v 1.2 2001/11/28 17:30:39 wiz Exp $ - ---- src/mreadline.c.orig Thu Nov 22 00:29:15 2001 -+++ src/mreadline.c -@@ -166,9 +166,10 @@ - } - - if ((uin = TabGetNext ())) -- sprintf (s, "%s %s/", message_cmd, UIN2Name (uin)); -+ snprintf (s, sizeof(s), "%s %s/", message_cmd, UIN2Name (uin)); - else -- sprintf (s, "%s ", message_cmd); -+ snprintf (s, sizeof(2), "%s ", message_cmd); -+ - - clen = cpos = strlen (s); - R_undraw (); diff --git a/chat/micq/patches/patch-ac b/chat/micq/patches/patch-ac deleted file mode 100644 index e8d866f2f68..00000000000 --- a/chat/micq/patches/patch-ac +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ac,v 1.2 2001/11/28 17:30:39 wiz Exp $ - ---- src/sendmsg.c.orig Thu Nov 22 00:32:01 2001 -+++ src/sendmsg.c -@@ -1087,7 +1087,7 @@ - { - char buf[450]; - -- sprintf (buf, "%s\xFE%s", url, description); -+ snprintf (buf, sizeof(buf), "%s\xFE%s", url, description); - icq_sendmsg (sok, uin, buf, URL_MESS); - } - |