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 2013/01/30 20:50:20 UTC

svn commit: r1440620 - /subversion/branches/1.7.x-neon-properr/subversion/libsvn_ra_neon/util.c

Author: cmpilato
Date: Wed Jan 30 19:50:20 2013
New Revision: 1440620

URL: http://svn.apache.org/viewvc?rev=1440620&view=rev
Log:
On the '1.7.x-neon-properr' branch:

* subversion/libsvn_ra_neon/util.c
  (start_207_element): strcmp() against the correct namespace URL
    when trying to reconstruct "svn:" property names from their
    on-the-wire components.

Modified:
    subversion/branches/1.7.x-neon-properr/subversion/libsvn_ra_neon/util.c

Modified: subversion/branches/1.7.x-neon-properr/subversion/libsvn_ra_neon/util.c
URL: http://svn.apache.org/viewvc/subversion/branches/1.7.x-neon-properr/subversion/libsvn_ra_neon/util.c?rev=1440620&r1=1440619&r2=1440620&view=diff
==============================================================================
--- subversion/branches/1.7.x-neon-properr/subversion/libsvn_ra_neon/util.c (original)
+++ subversion/branches/1.7.x-neon-properr/subversion/libsvn_ra_neon/util.c Wed Jan 30 19:50:20 2013
@@ -185,7 +185,7 @@ start_207_element(int *elem, void *baton
   if (parent == ELEM_prop)
     {
       svn_stringbuf_setempty(b->propname);
-      if (strcmp(nspace, SVN_DAV_PROP_NS_DAV) == 0)
+      if (strcmp(nspace, SVN_DAV_PROP_NS_SVN) == 0)
         svn_stringbuf_set(b->propname, SVN_PROP_PREFIX);
       else if (strcmp(nspace, "DAV:") == 0)
         svn_stringbuf_set(b->propname, "DAV:");