FS-6682: fix arg order on switch_channel_export_variable called from switch_channel_export_variable_printf #resolve

This commit is contained in:
Brian West 2014-07-24 08:28:38 -05:00
parent bbcbb24ca4
commit ac265ce495
1 changed files with 1 additions and 1 deletions

View File

@ -1284,7 +1284,7 @@ SWITCH_DECLARE(switch_status_t) switch_channel_export_variable_printf(switch_cha
return SWITCH_STATUS_FALSE;
}
status = switch_channel_export_variable(channel, varname, export_varname, data);
status = switch_channel_export_variable(channel, varname, data, export_varname);
free(data);