diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2015-03-18 13:33:26 +0000 |
---|---|---|
committer | <> | 2015-07-08 14:41:01 +0000 |
commit | bb0ef45f7c46b0ae221b26265ef98a768c33f820 (patch) | |
tree | 98bae10dde41c746c51ae97ec4f879e330415aa7 /subversion/libsvn_fs_base/err.c | |
parent | 239dfafe71711b2f4c43d7b90a1228d7bdc5195e (diff) | |
download | subversion-tarball-subversion-1.8.13.tar.gz |
Imported from /home/lorry/working-area/delta_subversion-tarball/subversion-1.8.13.tar.gz.subversion-1.8.13
Diffstat (limited to 'subversion/libsvn_fs_base/err.c')
-rw-r--r-- | subversion/libsvn_fs_base/err.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/subversion/libsvn_fs_base/err.c b/subversion/libsvn_fs_base/err.c index dc58bb6..c1e691d 100644 --- a/subversion/libsvn_fs_base/err.c +++ b/subversion/libsvn_fs_base/err.c @@ -62,10 +62,11 @@ svn_fs_base__err_dangling_id(svn_fs_t *fs, const svn_fs_id_t *id) svn_error_t * svn_fs_base__err_dangling_rev(svn_fs_t *fs, svn_revnum_t rev) { + /* Log the UUID as this error may be reported to the client. */ return svn_error_createf (SVN_ERR_FS_NO_SUCH_REVISION, 0, _("No such revision %ld in filesystem '%s'"), - rev, fs->path); + rev, fs->uuid); } |