summaryrefslogtreecommitdiff
path: root/subversion/libsvn_fs_base/err.c
diff options
context:
space:
mode:
Diffstat (limited to 'subversion/libsvn_fs_base/err.c')
-rw-r--r--subversion/libsvn_fs_base/err.c3
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);
}