[svn-commits] murf: branch 1.4 r46802 -
/branches/1.4/res/res_config_odbc.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Wed Nov 1 12:49:40 MST 2006
Author: murf
Date: Wed Nov 1 13:49:40 2006
New Revision: 46802
URL: http://svn.digium.com/view/asterisk?rev=46802&view=rev
Log:
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
Modified:
branches/1.4/res/res_config_odbc.c
Modified: branches/1.4/res/res_config_odbc.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/res/res_config_odbc.c?rev=46802&r1=46801&r2=46802&view=diff
==============================================================================
--- branches/1.4/res/res_config_odbc.c (original)
+++ branches/1.4/res/res_config_odbc.c Wed Nov 1 13:49:40 2006
@@ -448,7 +448,7 @@
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;
};
More information about the svn-commits
mailing list