fc1ff94bbd
Based on patch provided in PR 38624. 'cicqconv' command is renamed for 'cimconv', conflict with centericq is gone away. 2008-04-08 New version (4.22.5) released. This release fixes various segfaults in the Yahoo protocol. It also introduces a bar which displays all open chats nicely. 2008-03-29 New version (4.22.4) released. This release fixes the possible url exploit described in CVE-2008-1467. It also makes CenterIM ready for the Yahoo protocol change kicking in on 2nd april 2008. 2008-03-11 New version (4.22.3) released. This version fixes the various ICQ contact list issues (e.g adding contacts should now work). 2007-12-08 New version (4.22.2) released. More than 90 fixes/improvements have been added to centerim since our last release in June. The main fixes included are: * Fixed bug in msn login when the server sent a NOT message * Fixed bug in ICQ protocol which prevented others from seeing your presence (partial) * New version tracking/updating (Thanks to David Riebenbauer for this helpful feature) * Added an "Out for Lunch" state
13 lines
452 B
Text
13 lines
452 B
Text
$NetBSD: patch-av,v 1.2 2008/05/13 15:15:51 obache Exp $
|
|
|
|
--- src/hooks/abstracthook.cc.orig 2008-04-08 17:51:09.000000000 +0000
|
|
+++ src/hooks/abstracthook.cc
|
|
@@ -758,7 +758,7 @@ string abstracthook::getTimezoneIDtoStri
|
|
if(id > 24 || id < -24) {
|
|
return "Unspecified";
|
|
} else {
|
|
- char buf[32];
|
|
+ static char buf[32];
|
|
snprintf(buf, sizeof(buf), "GMT %s%d:%s", id > 0 ? "-" : "+", abs(id/2), id % 2 == 0 ? "00" : "30");
|
|
return buf;
|
|
}
|