func_export: Use correct function argument as variable name.

Fixes #208

(cherry picked from commit d36d208beb)
pull/499/head
Sean Bright 2 years ago committed by Asterisk Development Team
parent 248e724928
commit 6dfdede30a

@ -84,7 +84,7 @@ static int func_export_write(struct ast_channel *chan, const char *function, cha
return -1;
}
pbx_builtin_setvar_helper(ochan, data, value);
pbx_builtin_setvar_helper(ochan, args.var, value);
ast_channel_unref(ochan);
return 0;
}

Loading…
Cancel
Save