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 2010/10/04 22:08:17 UTC

svn commit: r1004383 - /subversion/trunk/subversion/bindings/javahl/native/SVNRepos.cpp

Author: hwright
Date: Mon Oct  4 20:08:17 2010
New Revision: 1004383

URL: http://svn.apache.org/viewvc?rev=1004383&view=rev
Log:
JavaHL: Update the called revprop change API.

* subversion/bindings/javahl/native/SVNRepos.cpp
  (setRevProp): Use the atomic version of the API, but don't provide a
    known-good value.

Modified:
    subversion/trunk/subversion/bindings/javahl/native/SVNRepos.cpp

Modified: subversion/trunk/subversion/bindings/javahl/native/SVNRepos.cpp
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/javahl/native/SVNRepos.cpp?rev=1004383&r1=1004382&r2=1004383&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/javahl/native/SVNRepos.cpp (original)
+++ subversion/trunk/subversion/bindings/javahl/native/SVNRepos.cpp Mon Oct  4 20:08:17 2010
@@ -470,9 +470,9 @@ void SVNRepos::setRevProp(File &path, Re
                                                requestPool.pool());
   if (usePreRevPropChangeHook || usePostRevPropChangeHook)
     {
-      err = svn_repos_fs_change_rev_prop3(repos,
+      err = svn_repos_fs_change_rev_prop4(repos,
                                           revision.revision()->value.number,
-                                          NULL, propName, propValStr,
+                                          NULL, propName, NULL, propValStr,
                                           usePreRevPropChangeHook,
                                           usePostRevPropChangeHook, NULL,
                                           NULL, requestPool.pool());