From e52fcd41a994f8939dad60fa01fd720e000b6036 Mon Sep 17 00:00:00 2001 From: Terry Wilson Date: Tue, 27 Oct 2009 17:12:09 +0000 Subject: [PATCH] Merged revisions 226099 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r226099 | twilson | 2009-10-27 11:48:54 -0500 (Tue, 27 Oct 2009) | 2 lines Don't prepend the URI prefix to the post directory ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@226101 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_http_post.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/res_http_post.c b/res/res_http_post.c index 1a96d5a1d5..3169523b5a 100644 --- a/res/res_http_post.c +++ b/res/res_http_post.c @@ -447,7 +447,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->supports_get = 0;