You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2014/01/12 13:38:51 UTC

svn commit: r1557522 - /subversion/trunk/subversion/mod_dav_svn/reports/update.c

Author: rhuijben
Date: Sun Jan 12 12:38:50 2014
New Revision: 1557522

URL: http://svn.apache.org/r1557522
Log:
* subversion/mod_dav_svn/reports/update.c
  (upd_change_xxx_prop): Make the new in 1.8 include props mode properly report
    property changes in send copyfrom mode (which is currently unused by our
    client code).

Modified:
    subversion/trunk/subversion/mod_dav_svn/reports/update.c

Modified: subversion/trunk/subversion/mod_dav_svn/reports/update.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/mod_dav_svn/reports/update.c?rev=1557522&r1=1557521&r2=1557522&view=diff
==============================================================================
--- subversion/trunk/subversion/mod_dav_svn/reports/update.c (original)
+++ subversion/trunk/subversion/mod_dav_svn/reports/update.c Sun Jan 12 12:38:50 2014
@@ -684,8 +684,8 @@ upd_change_xxx_prop(void *baton,
 
           /* That said, beginning in Subversion 1.8, clients might
              request even in skelta mode that we transmit properties
-             on newly added files explicitly. */
-          if ((! b->copyfrom) && value && b->uc->include_props)
+             on added files and directories explicitly. */
+          if (value && b->uc->include_props)
             {
               SVN_ERR(send_propchange(b, name, value, pool));
             }