summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorSteve Murphy <murf@digium.com>2006-11-01 19:48:40 +0000
committerSteve Murphy <murf@digium.com>2006-11-01 19:48:40 +0000
commite52822b3bf48c4bd46ca39f0cb002efd6e5ec31c (patch)
tree5f30a10ee803e9471d7507edaa0e590b83a47faa /res
parent9335b4bc1c8b91733fcca99f8b0a3071a2fef35e (diff)
a fix for bug 8251; the var_val needs to accept longer strings or mass confusion and a lot of lost time is the result
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@46801 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res')
-rw-r--r--res/res_config_odbc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_config_odbc.c b/res/res_config_odbc.c
index e748d7fbf..4bfc1db44 100644
--- a/res/res_config_odbc.c
+++ b/res/res_config_odbc.c
@@ -448,7 +448,7 @@ struct config_odbc_obj {
char filename[128];
char category[128];
char var_name[128];
- char var_val[128];
+ char var_val[1024]; /* changed from 128 to 1024 via bug 8251 */
SQLINTEGER err;
};