~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to subversion/libsvn_fs_fs/fs_fs.c

  • Committer: Michael Diers
  • Date: 2011-03-22 13:11:00 UTC
  • mfrom: (53.1.2 ppa-natty)
  • Revision ID: mdiers@elego.de-20110322131100-86ds6jfkt8ei02q2
Tags: 1.6.16dfsg-1svn1
MergeĀ DebianĀ (1.6.16dfsg-1).

Show diffs side-by-side

added added

removed removed

Lines of Context:
5903
5903
  /* Update the 'current' file. */
5904
5904
  SVN_ERR(write_final_current(cb->fs, cb->txn->id, new_rev, start_node_id,
5905
5905
                              start_copy_id, pool));
 
5906
 
 
5907
  /* At this point the new revision is committed and globally visible
 
5908
     so let the caller know it succeeded by giving it the new revision
 
5909
     number, which fulfills svn_fs_commit_txn() contract.  Any errors
 
5910
     after this point do not change the fact that a new revision was
 
5911
     created. */
 
5912
  *cb->new_rev_p = new_rev;
 
5913
 
5906
5914
  ffd->youngest_rev_cache = new_rev;
5907
5915
 
5908
5916
  /* Remove this transaction directory. */
5909
5917
  SVN_ERR(svn_fs_fs__purge_txn(cb->fs, cb->txn->id, pool));
5910
5918
 
5911
 
  *cb->new_rev_p = new_rev;
5912
 
 
5913
5919
  return SVN_NO_ERROR;
5914
5920
}
5915
5921