You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2015/12/15 00:24:52 UTC

svn commit: r1720046 - /subversion/branches/parallel-put/subversion/libsvn_repos/repos.c

Author: stefan2
Date: Mon Dec 14 23:24:52 2015
New Revision: 1720046

URL: http://svn.apache.org/viewvc?rev=1720046&view=rev
Log:
On the parallel-put branch: Follow-up to r1720045.

* subversion/libsvn_repos/repos.c
  (svn_repos_has_capability): Fix copy-n-pasto.

Modified:
    subversion/branches/parallel-put/subversion/libsvn_repos/repos.c

Modified: subversion/branches/parallel-put/subversion/libsvn_repos/repos.c
URL: http://svn.apache.org/viewvc/subversion/branches/parallel-put/subversion/libsvn_repos/repos.c?rev=1720046&r1=1720045&r2=1720046&view=diff
==============================================================================
--- subversion/branches/parallel-put/subversion/libsvn_repos/repos.c (original)
+++ subversion/branches/parallel-put/subversion/libsvn_repos/repos.c Mon Dec 14 23:24:52 2015
@@ -1564,7 +1564,7 @@ svn_repos_has_capability(svn_repos_t *re
     {
       *has = svn_fs_supports_concurrent_writes(repos->fs, pool);
       svn_hash_sets(repos->repository_capabilities,
-                    SVN_REPOS_CAPABILITY_MERGEINFO,
+                    SVN_REPOS_CAPABILITY_CONCURRENT_WRITE,
                     *has ? capability_yes : capability_no);
     }
   else