~ubuntu-branches/ubuntu/precise/subversion/precise-security

« back to all changes in this revision

Viewing changes to subversion/libsvn_fs_base/fs.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2009-06-06 22:57:04 UTC
  • mfrom: (1.2.1 upstream)
  • mto: (1.3.4 merge)
  • mto: This revision was merged to the branch mainline in revision 32.
  • Revision ID: james.westby@ubuntu.com-20090606225704-aivy7dhglo1zd120
Tags: upstream-1.5.6dfsg
ImportĀ upstreamĀ versionĀ 1.5.6dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
718
718
  if (svn_err && APR_STATUS_IS_ENOENT(svn_err->apr_err))
719
719
    {
720
720
      /* Pre-1.2 filesystems did not have a format file (you could say
721
 
         they were format "0"), so they get upgraded on the fly. */
 
721
         they were format "0"), so they get upgraded on the fly.
 
722
         However, we stopped "upgrading on the fly" in 1.5, so older
 
723
         filesystems should only be bumped to 1.3, which is format "1". */
722
724
      svn_error_clear(svn_err);
723
725
      svn_err = SVN_NO_ERROR;
724
 
      format = SVN_FS_BASE__FORMAT_NUMBER;
 
726
      format = 1;
725
727
      write_format_file = TRUE;
726
728
    }
727
729
  else if (svn_err)