[svn-commits] twilson: branch 1.6.1 r226100 - in /branches/1.6.1: ./ res/res_http_post.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Oct 27 12:04:45 CDT 2009


Author: twilson
Date: Tue Oct 27 12:04:41 2009
New Revision: 226100

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=226100
Log:
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
........

Modified:
    branches/1.6.1/   (props changed)
    branches/1.6.1/res/res_http_post.c

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/res/res_http_post.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.1/res/res_http_post.c?view=diff&rev=226100&r1=226099&r2=226100
==============================================================================
--- branches/1.6.1/res/res_http_post.c (original)
+++ branches/1.6.1/res/res_http_post.c Tue Oct 27 12:04:41 2009
@@ -307,7 +307,7 @@
 
 			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;




More information about the svn-commits mailing list