You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2012/05/16 05:22:44 UTC

svn commit: r1338983 - /subversion/branches/ev2-export/subversion/libsvn_client/prop_commands.c

Author: hwright
Date: Wed May 16 03:22:43 2012
New Revision: 1338983

URL: http://svn.apache.org/viewvc?rev=1338983&view=rev
Log:
On the ev2-export branch:
Convert remote prop commands to use the repos-private Ev2 provider.

* subversion/libsvn_client/prop_commands.c
  (propset_on_url): Use svn_ra__get_commit_ev2().

Modified:
    subversion/branches/ev2-export/subversion/libsvn_client/prop_commands.c

Modified: subversion/branches/ev2-export/subversion/libsvn_client/prop_commands.c
URL: http://svn.apache.org/viewvc/subversion/branches/ev2-export/subversion/libsvn_client/prop_commands.c?rev=1338983&r1=1338982&r2=1338983&view=diff
==============================================================================
--- subversion/branches/ev2-export/subversion/libsvn_client/prop_commands.c (original)
+++ subversion/branches/ev2-export/subversion/libsvn_client/prop_commands.c Wed May 16 03:22:43 2012
@@ -221,16 +221,14 @@ propset_on_url(const char *propname,
                                            message, ctx, pool));
 
   /* Fetch RA commit editor. */
-  SVN_ERR(svn_ra__register_editor_shim_callbacks(ra_session,
-                        svn_client__get_shim_callbacks(ctx->wc_ctx,
-                                                       NULL, pool)));
-  SVN_ERR(svn_ra_get_commit_editor4(ra_session, &editor,
-                                    commit_revprops,
-                                    commit_callback,
-                                    commit_baton,
-                                    NULL, TRUE, /* No lock tokens */
-                                    ctx->cancel_func, ctx->cancel_baton,
-                                    pool, pool));
+  SVN_ERR(svn_ra__get_commit_ev2(&editor, ra_session,
+                                 commit_revprops,
+                                 commit_callback,
+                                 commit_baton,
+                                 NULL, TRUE, /* No lock tokens */
+                                 NULL, NULL, NULL, NULL,
+                                 ctx->cancel_func, ctx->cancel_baton,
+                                 pool, pool));
 
   /* ### Need to handle symlink? */
   if (node_kind == svn_node_file)