aboutsummaryrefslogtreecommitdiffstats
path: root/addons
diff options
context:
space:
mode:
Diffstat (limited to 'addons')
-rw-r--r--addons/res_config_mysql.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/addons/res_config_mysql.c b/addons/res_config_mysql.c
index a626ffd3e..93a743245 100644
--- a/addons/res_config_mysql.c
+++ b/addons/res_config_mysql.c
@@ -745,6 +745,7 @@ static int update2_mysql(const char *database, const char *tablename, va_list ap
ESCAPE_STRING(buf, newval);
ast_str_append(&sql, 0, "%s %s = '%s'", first ? "" : ",", newparam, ast_str_buffer(buf));
+ first = 0;
/* If the column length isn't long enough, give a chance to lengthen it. */
if (strncmp(column->type, "char", 4) == 0 || strncmp(column->type, "varchar", 7) == 0) {