]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-6682: fix arg order on switch_channel_export_variable called from switch_channel_e...
authorBrian West <brian@freeswitch.org>
Thu, 24 Jul 2014 13:28:38 +0000 (08:28 -0500)
committerBrian West <brian@freeswitch.org>
Thu, 24 Jul 2014 13:28:38 +0000 (08:28 -0500)
src/switch_channel.c

index f6d3a96ddc57aea4be2d102ad3e17da02d41a566..78ebc979380628ca7b6e7c28bca613b32940e029 100644 (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);