From f506644830c269ece5dbf3aaa4874593c4d85b2c Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Fri, 6 Nov 2015 11:47:15 +0100 Subject: [PATCH] pull: make slightly clearer when failing for missing xattrs support It is not clear why pull fails on tmpfs. The additional message might be helpful. Signed-off-by: Giuseppe Scrivano --- src/libostree/ostree-repo-commit.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libostree/ostree-repo-commit.c b/src/libostree/ostree-repo-commit.c index a761a8a9..7cc3e27b 100644 --- a/src/libostree/ostree-repo-commit.c +++ b/src/libostree/ostree-repo-commit.c @@ -103,6 +103,7 @@ write_file_metadata_to_xattr (int fd, if (G_UNLIKELY (res == -1)) { gs_set_error_from_errno (error, errno); + g_prefix_error (error, "Unable to set xattr: "); return FALSE; }