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.1@226100 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Terry Wilson
2009-10-27 17:04:41 +00:00
parent 1949be5230
commit 606c8a29aa

View File

@@ -307,7 +307,7 @@ static int __ast_http_post_load(int reload)
urih->description = ast_strdup("HTTP POST mapping"); urih->description = ast_strdup("HTTP POST mapping");
urih->uri = ast_strdup(v->name); 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->data = ds;
urih->has_subtree = 0; urih->has_subtree = 0;
urih->supports_get = 0; urih->supports_get = 0;