diff options
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | src/language.c | 2 | ||||
-rw-r--r-- | version.log | 7 |
3 files changed, 9 insertions, 3 deletions
@@ -59,8 +59,9 @@ Provided by Anope Dev. <dev@anope.org> - 2006 08/05 F Externed doValidHost call for modules to use. [#570] 08/05 F Lang files now support %R for use with StrictPrivMsg. [#565] 08/06 F Segfault when shuting down anope. [#491] -08/06 F Fixed typos in cs_appendtopic.c. [#571] +08/06 F Fixed typos in cs_appendtopic.c. [#571] 08/06 F TSMode support for ratbox; TS6 works for ratbox now. [#563] +08/07 F Increased langauge buffer size. [#572] Provided by ThaPrince <jon@vile.com> - 2006 05/19 A Plexus 3 support. [ #00] diff --git a/src/language.c b/src/language.c index 1a3b2cadb..bee0735f6 100644 --- a/src/language.c +++ b/src/language.c @@ -154,7 +154,7 @@ void lang_sanitize() { int i = 0, j = 0; int len = 0; - char tmp[256]; + char tmp[2000]; char *newstr = NULL; for (i = 0; i < NUM_LANGS; i++) { for (j = 0; j < NUM_STRINGS; j++) { diff --git a/version.log b/version.log index 5c8792b73..5fd5db19e 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,15 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="14" VERSION_EXTRA="" -VERSION_BUILD="1124" +VERSION_BUILD="1125" # $Log$ # +# BUILD : 1.7.14 (1125) +# BUGS : 572 +# NOTES : Increasd langauge buffer size to avoid issues 256 wasnt big enough. +# +# # BUILD : 1.7.14 (1124) # BUGS : 552 # NOTES : Added a way to modules_unload_all() to specify if we should unload the protocol module or not |