aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authortwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-27 16:48:54 +0000
committertwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-27 16:48:54 +0000
commit8c6ba0cbb77ed8e6097888e9587fa67c5ba0b56f (patch)
tree6fe986ac327092fccdc69bee4a5db5917bb71223 /res
parentcdf1218361bd3f0fb782c67045136a9db7af92ef (diff)
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
Diffstat (limited to 'res')
-rw-r--r--res/res_http_post.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_http_post.c b/res/res_http_post.c
index 4a3416252..5fff5d8ba 100644
--- a/res/res_http_post.c
+++ b/res/res_http_post.c
@@ -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;