You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2011/02/20 20:41:41 UTC

svn commit: r1072695 - /subversion/trunk/subversion/libsvn_ra_neon/fetch.c

Author: philip
Date: Sun Feb 20 19:41:41 2011
New Revision: 1072695

URL: http://svn.apache.org/viewvc?rev=1072695&view=rev
Log:
Followup to r1072629, fix a problem where props were lost over ra_neon.

* subversion/libsvn_ra_neon/fetch.c
  (svn_ra_neon__get_file): Fix a typo so that all props are retrieved when
   requested.

Modified:
    subversion/trunk/subversion/libsvn_ra_neon/fetch.c

Modified: subversion/trunk/subversion/libsvn_ra_neon/fetch.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_neon/fetch.c?rev=1072695&r1=1072694&r2=1072695&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_neon/fetch.c (original)
+++ subversion/trunk/subversion/libsvn_ra_neon/fetch.c Sun Feb 20 19:41:41 2011
@@ -699,7 +699,7 @@ svn_error_t *svn_ra_neon__get_file(svn_r
 
   SVN_ERR(svn_ra_neon__get_props_resource(&rsrc, ras, final_url,
                                           NULL,
-                                          props ? restype_props : NULL,
+                                          props ? NULL : restype_props,
                                           pool));
   if (rsrc->is_collection)
     {