dect
/
asterisk
Archived
13
0
Fork 0

Don't prepend the URI prefix to the post directory

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@226099 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
twilson 2009-10-27 16:48:54 +00:00
parent cdf1218361
commit 8c6ba0cbb7
1 changed files with 1 additions and 1 deletions

View File

@ -445,7 +445,7 @@ static int __ast_http_post_load(int reload)
urih->description = ast_strdup("HTTP POST mapping");
urih->uri = ast_strdup(v->name);
ast_str_set(&ds, 0, "%s/%s", prefix, v->value);
ast_str_set(&ds, 0, "%s", v->value);
urih->data = ds;
urih->has_subtree = 0;
urih->callback = http_post_callback;