You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by cm...@apache.org on 2010/02/02 17:57:19 UTC

svn commit: r905706 - /subversion/trunk/subversion/libsvn_ra_serf/options.c

Author: cmpilato
Date: Tue Feb  2 16:57:14 2010
New Revision: 905706

URL: http://svn.apache.org/viewvc?rev=905706&view=rev
Log:
* subversion/libsvn_ra_serf/options.c
  (svn_ra_serf__exchange_capabilities): Perform OPTIONS using the URL
    path bit only, not the fully qualified URL.  This is, as far as I
    can tell, a mere cosmetic change for consistency with the rest of
    this libraries network interactions.

Modified:
    subversion/trunk/subversion/libsvn_ra_serf/options.c

Modified: subversion/trunk/subversion/libsvn_ra_serf/options.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/options.c?rev=905706&r1=905705&r2=905706&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/options.c (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/options.c Tue Feb  2 16:57:14 2010
@@ -470,7 +470,7 @@
 
   /* This routine automatically fills in serf_sess->capabilities */
   svn_ra_serf__create_options_req(&opt_ctx, serf_sess, serf_sess->conns[0],
-                                  serf_sess->repos_url_str, pool);
+                                  serf_sess->repos_url.path, pool);
 
   SVN_ERR(svn_ra_serf__context_run_wait(
     svn_ra_serf__get_options_done_ptr(opt_ctx), serf_sess, pool));