summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerry Wilson <twilson@digium.com>2009-10-27 16:48:54 +0000
committerTerry Wilson <twilson@digium.com>2009-10-27 16:48:54 +0000
commitba8176dc5271e99a127fac9d4b2d67c041e8c668 (patch)
tree6fe986ac327092fccdc69bee4a5db5917bb71223
parent5825f68e8bc892b5e9699d1e491528c8e900355e (diff)
Don't prepend the URI prefix to the post directory
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@226099 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-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;