From: Pekka Riikonen Date: Tue, 7 Aug 2007 18:15:35 +0000 (+0000) Subject: Fixed format string. X-Git-Tag: silc.toolkit.1.1.3~5 X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=commitdiff_plain;h=1e5e5320033da688c9ee890ac5f6c6944adba164 Fixed format string. --- diff --git a/CHANGES b/CHANGES index bd631bd7..334e4f57 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,12 @@ -Sat Aug 4 18:37:22 EEST 2007 Pekka Riikonen +Tue Aug 7 20:56:06 EEST 2007 Pekka Riikonen + + * Fixed alignment issues with 64-bit CPUs. Affected files + are lib/silcutil/silcschedule.c and unix/silcunixschedule.c. + + * Added "There are now xx nick's" to "are xx nicks". Affected + file is apps/irssi/src/fe-common/silc/module-formats.c. + +Sat Aug 4 18:37:22 EEST 2007 Pekka Riikonen * Fixed USERS command user mode handling (integer overflow). Affected file is lib/silcclient/command_reply.c. diff --git a/apps/irssi/src/fe-common/silc/module-formats.c b/apps/irssi/src/fe-common/silc/module-formats.c index 40c7d789..2859b934 100644 --- a/apps/irssi/src/fe-common/silc/module-formats.c +++ b/apps/irssi/src/fe-common/silc/module-formats.c @@ -108,7 +108,7 @@ FORMAT_REC fecommon_silc_formats[] = { { "notice_private_signed", "{notice {flag_signed}$0{pvtnotice_host $1}}$2", 3, { 0, 0, 0 } }, { "notice_private_unknown", "{notice {flag_unknown}$0{pvtnotice_host $1}}$2", 3, { 0, 0, 0 } }, { "notice_private_failed", "{notice {flag_failed}$0{pvtnotice_host $1}}$2", 3, { 0, 0, 0 } }, - { "many", "There are now $0 {channick_hilight $1}'s on this channel", 2, { 0, 0 } }, + { "many", "There are now $0 {channick_hilight $1}s on this channel", 2, { 0, 0 } }, { "user_appears", "{channick_hilight $0} will appear as {channick_hilight $1}", 2, { 0, 0 } },