From: Steve Murphy Date: Wed, 1 Nov 2006 19:49:40 +0000 (+0000) Subject: a fix for bug 8251; the var_val needs to accept longer strings or mass confusion... X-Git-Tag: 1.4.0-beta4~217 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b2356087abfb4442edefb21fc53f35cc482dfa18;p=thirdparty%2Fasterisk.git 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/branches/1.4@46802 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_config_odbc.c b/res/res_config_odbc.c index e748d7fbf8..4bfc1db44c 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; };