From: Kevin P. Fleming Date: Thu, 1 Sep 2005 21:50:49 +0000 (+0000) Subject: don't reverse variable order during inheritance (issue #5091) X-Git-Tag: 1.2.0-beta2~423 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=253e6537df4c8619880f462ed3590bc1703b0261;p=thirdparty%2Fasterisk.git don't reverse variable order during inheritance (issue #5091) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6489 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channel.c b/channel.c index 56f889b443..7e63bbb2a2 100755 --- a/channel.c +++ b/channel.c @@ -2470,7 +2470,7 @@ void ast_channel_inherit_variables(const struct ast_channel *parent, struct ast_ case 1: newvar = ast_var_assign(&varname[1], ast_var_value(current)); if (newvar) { - AST_LIST_INSERT_HEAD(&child->varshead, newvar, entries); + AST_LIST_INSERT_TAIL(&child->varshead, newvar, entries); if (option_debug) ast_log(LOG_DEBUG, "Copying soft-transferable variable %s.\n", ast_var_name(newvar)); } @@ -2478,7 +2478,7 @@ void ast_channel_inherit_variables(const struct ast_channel *parent, struct ast_ case 2: newvar = ast_var_assign(ast_var_full_name(current), ast_var_value(current)); if (newvar) { - AST_LIST_INSERT_HEAD(&child->varshead, newvar, entries); + AST_LIST_INSERT_TAIL(&child->varshead, newvar, entries); if (option_debug) ast_log(LOG_DEBUG, "Copying hard-transferable variable %s.\n", ast_var_name(newvar)); }