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 2012/10/11 21:06:31 UTC

svn commit: r1397236 - /subversion/branches/http-dynamic-prop-namespaces/subversion/mod_dav_svn/repos.c

Author: cmpilato
Date: Thu Oct 11 19:06:30 2012
New Revision: 1397236

URL: http://svn.apache.org/viewvc?rev=1397236&view=rev
Log:
On the 'http-dynamic-prop-namespaces' branch: fix server detection of
client support for the extensible property XML namespace.

* subversion/mod_dav_svn/repos.c
  (get_resource): Look for "extensible namespace" feature header
    regardless of whether the "mergeinfo" feature header was present.

Modified:
    subversion/branches/http-dynamic-prop-namespaces/subversion/mod_dav_svn/repos.c

Modified: subversion/branches/http-dynamic-prop-namespaces/subversion/mod_dav_svn/repos.c
URL: http://svn.apache.org/viewvc/subversion/branches/http-dynamic-prop-namespaces/subversion/mod_dav_svn/repos.c?rev=1397236&r1=1397235&r2=1397236&view=diff
==============================================================================
--- subversion/branches/http-dynamic-prop-namespaces/subversion/mod_dav_svn/repos.c (original)
+++ subversion/branches/http-dynamic-prop-namespaces/subversion/mod_dav_svn/repos.c Thu Oct 11 19:06:30 2012
@@ -2148,8 +2148,7 @@ get_resource(request_rec *r,
                extensible property XML namespace capability to
                clients, so we'll just stash it in our repos
                structure. */
-            else if (svn_cstring_match_list(SVN_DAV_NS_DAV_SVN_PROP_EXT_NS,
-                                            vals))
+            if (svn_cstring_match_list(SVN_DAV_NS_DAV_SVN_PROP_EXT_NS, vals))
               {
                 repos->use_ext_prop_ns = TRUE;
               }