aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_agi.c
diff options
context:
space:
mode:
Diffstat (limited to 'res/res_agi.c')
-rwxr-xr-xres/res_agi.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index e7bced29a..0572f0bd4 100755
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -983,11 +983,13 @@ static int handle_setvariable(struct ast_channel *chan, AGI *agi, int argc, char
static int handle_getvariable(struct ast_channel *chan, AGI *agi, int argc, char **argv)
{
- char *tempstr;
+ char *ret;
+ char tempstr[1024];
if (argc != 3)
return RESULT_SHOWUSAGE;
- if ((tempstr = pbx_builtin_getvar_helper(chan, argv[2])))
- fdprintf(agi->fd, "200 result=1 (%s)\n", tempstr);
+ pbx_retrieve_variable(chan, argv[2], &ret, tempstr, sizeof(tempstr), NULL);
+ if (ret)
+ fdprintf(agi->fd, "200 result=1 (%s)\n", ret);
else
fdprintf(agi->fd, "200 result=0\n");