aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authortwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-27 17:04:41 +0000
committertwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-27 17:04:41 +0000
commit0088fbcf5352da4d7be30192d6a1953b5b2baff6 (patch)
treeb1cb939da4f929262f4ca6c53f267df1f5db9424 /res
parent335b953c2987536072cad052397417e1ffa19515 (diff)
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: http://svn.digium.com/svn/asterisk/branches/1.6.1@226100 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 3425aaee2..0c141da39 100644
--- a/res/res_http_post.c
+++ b/res/res_http_post.c
@@ -307,7 +307,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;