summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2006-08-07 08:47:37 +0000
committerrob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2006-08-07 08:47:37 +0000
commit1ad4aed21cd9bae62dde5219526797e7a5c58cf7 (patch)
treeec05ca3d886f14f3cd8581d660249358e988eb01
parent11b73a098ca0276bb4554d57098e4c8c86b0804b (diff)
BUILD : 1.7.14 (1125) BUGS : 572 NOTES : Increasd langauge buffer size to avoid issues 256 wasnt big enough.
git-svn-id: svn://svn.anope.org/anope/trunk@1125 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@849 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--Changes3
-rw-r--r--src/language.c2
-rw-r--r--version.log7
3 files changed, 9 insertions, 3 deletions
diff --git a/Changes b/Changes
index f29ebb033..f2cd4bb1f 100644
--- a/Changes
+++ b/Changes
@@ -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