You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2013/07/27 23:27:31 UTC

svn commit: r1507718 - /subversion/branches/fsfs-format7/subversion/libsvn_fs_x/fs_x.c

Author: stefan2
Date: Sat Jul 27 21:27:31 2013
New Revision: 1507718

URL: http://svn.apache.org/r1507718
Log:
On the fsfs-format7 branch:  Fix the FSX format info function.

* subversion/libsvn_fs_x/fs_x.c
  (svn_fs_x__info_format): return 1.9.0 instead of 1.1.9

Modified:
    subversion/branches/fsfs-format7/subversion/libsvn_fs_x/fs_x.c

Modified: subversion/branches/fsfs-format7/subversion/libsvn_fs_x/fs_x.c
URL: http://svn.apache.org/viewvc/subversion/branches/fsfs-format7/subversion/libsvn_fs_x/fs_x.c?rev=1507718&r1=1507717&r2=1507718&view=diff
==============================================================================
--- subversion/branches/fsfs-format7/subversion/libsvn_fs_x/fs_x.c (original)
+++ subversion/branches/fsfs-format7/subversion/libsvn_fs_x/fs_x.c Sat Jul 27 21:27:31 2013
@@ -1136,8 +1136,8 @@ svn_fs_x__info_format(int *fs_format,
   *supports_version = apr_palloc(result_pool, sizeof(svn_version_t));
 
   (*supports_version)->major = SVN_VER_MAJOR;
-  (*supports_version)->minor = 1;
-  (*supports_version)->patch = 9;
+  (*supports_version)->minor = 9;
+  (*supports_version)->patch = 0;
   (*supports_version)->tag = "";
 
   switch (ffd->format)