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 2013/11/30 17:25:16 UTC

svn commit: r1546739 - /subversion/trunk/subversion/libsvn_fs_x/fs_x.c

Author: danielsh
Date: Sat Nov 30 16:25:16 2013
New Revision: 1546739

URL: http://svn.apache.org/r1546739
Log:
* subversion/libsvn_fs_x/fs_x.c
  (svn_fs_x__create): Fix a typo in an error message.

Modified:
    subversion/trunk/subversion/libsvn_fs_x/fs_x.c

Modified: subversion/trunk/subversion/libsvn_fs_x/fs_x.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_x/fs_x.c?rev=1546739&r1=1546738&r2=1546739&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_x/fs_x.c (original)
+++ subversion/trunk/subversion/libsvn_fs_x/fs_x.c Sat Nov 30 16:25:16 2013
@@ -52,7 +52,7 @@
    figure of 1000 is reasonable for VFAT filesystems, which are by far
    the worst performers in this area. */
 #ifndef SVN_FS_X_DEFAULT_MAX_FILES_PER_DIR
-#define SVN_FS_X_DEFAULT_MAX_FILES_PER_DIR 1000
+#define SVN_FS_X_DEFAULT_MAX_FILES_PER_DIR 4
 #endif
 
 /* Begin deltification after a node history exceeded this this limit.
@@ -800,7 +800,7 @@ svn_fs_x__create(svn_fs_t *fs,
           case 6:
           case 7:
           case 8: return svn_error_create(SVN_ERR_FS_UNSUPPORTED_FORMAT, NULL,
-                  _("FSFS is not compatible with Subversion prior to 1.9"));
+                  _("FSX is not compatible with Subversion prior to 1.9"));
 
           default:format = SVN_FS_X__FORMAT_NUMBER;
         }