diff options
Diffstat (limited to 'chat/centericq/patches/patch-aw')
-rw-r--r-- | chat/centericq/patches/patch-aw | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/chat/centericq/patches/patch-aw b/chat/centericq/patches/patch-aw deleted file mode 100644 index bd53677ca06..00000000000 --- a/chat/centericq/patches/patch-aw +++ /dev/null @@ -1,23 +0,0 @@ -$NetBSD: patch-aw,v 1.1 2007/07/19 00:43:42 lkundrak Exp $ - ---- src/hooks/aimhook.cc.orig 2007-07-19 02:24:38.000000000 +0200 -+++ src/hooks/aimhook.cc -@@ -32,6 +32,8 @@ - #include "imlogger.h" - #include "eventmanager.h" - -+#define NOTIFBUF 512 -+ - aimhook ahook; - - aimhook::aimhook() -@@ -293,7 +295,8 @@ void aimhook::loadprofile() { - - if(access(fname.c_str(), R_OK)) { - char sbuf[512]; -- sprintf(sbuf, _("I do really enjoy the default AIM profile of centericq %s."), VERSION); -+ snprintf(sbuf, 512, _("I do really enjoy the default AIM profile of centericq %s."), VERSION); -+ sbuf[511] = '\0'; - profile.info = sbuf; - saveprofile(); - } |