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

svn commit: r1147022 - /subversion/branches/fs-progress/subversion/include/svn_fs.h

Author: danielsh
Date: Fri Jul 15 08:41:21 2011
New Revision: 1147022

URL: http://svn.apache.org/viewvc?rev=1147022&view=rev
Log:
On the fs-progress branch, more tightly plug the forward compatibility hole.

* subversion/include/svn_fs.h
  (svn_fs_progress_info_t): Make all information declineable by the caller.
    (We might want to call with progress=-1,total=-1,info!=NULL in 1.next .)

Modified:
    subversion/branches/fs-progress/subversion/include/svn_fs.h

Modified: subversion/branches/fs-progress/subversion/include/svn_fs.h
URL: http://svn.apache.org/viewvc/subversion/branches/fs-progress/subversion/include/svn_fs.h?rev=1147022&r1=1147021&r2=1147022&view=diff
==============================================================================
--- subversion/branches/fs-progress/subversion/include/svn_fs.h (original)
+++ subversion/branches/fs-progress/subversion/include/svn_fs.h Fri Jul 15 08:41:21 2011
@@ -257,8 +257,8 @@ typedef struct svn_fs_progress_info_t sv
  * Callback function type for progress notification.
  *
  * @a progress is the number of steps already completed, out of @a total steps.
- * @a total may be -1 if it's unknown or unavailable. @a info must be @c NULL
- * in Subversion 1.8.  @a baton is the callback baton.
+ * @a progress and/or @a total may be -1 if they are unknown or unavailable. @a
+ * info must be @c NULL in Subversion 1.8.  @a baton is the callback baton.
  *
  * @note @a total may be a best-effort estimate.
  *