You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2013/07/01 15:52:51 UTC

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

Author: danielsh
Date: Mon Jul  1 13:52:50 2013
New Revision: 1498456

URL: http://svn.apache.org/r1498456
Log:
ra_serf: when querying for the 'get-file-revs-reverse' capability, answer
'No' rather than 'Never heard of that one.'

* subversion/libsvn_ra_serf/options.c
  (options_response_handler): Recognise SVN_RA_CAPABILITY_GET_FILE_REVS_REVERSE.

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=1498456&r1=1498455&r2=1498456&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/options.c (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/options.c Mon Jul  1 13:52:50 2013
@@ -362,6 +362,8 @@ options_response_handler(serf_request_t 
                     capability_no);
       svn_hash_sets(session->capabilities, SVN_RA_CAPABILITY_EPHEMERAL_TXNPROPS,
                     capability_no);
+      svn_hash_sets(session->capabilities, SVN_RA_CAPABILITY_GET_FILE_REVS_REVERSE,
+                    capability_no);
 
       /* Then see which ones we can discover. */
       serf_bucket_headers_do(hdrs, capabilities_headers_iterator_callback,