Merge pull request #2737 from lucab/ups/repo-checkout-fix-uid-typo
lib/repo-checkout: fix typo in error message
This commit is contained in:
commit
1075e58c16
|
|
@ -684,7 +684,7 @@ _checkout_overlayfs_whiteout_at (OstreeRepo *repo,
|
||||||
|
|
||||||
if (uid != dest_stbuf.st_uid)
|
if (uid != dest_stbuf.st_uid)
|
||||||
return glnx_throw(error, "existing destination file %s does not match uid %d",
|
return glnx_throw(error, "existing destination file %s does not match uid %d",
|
||||||
destination_name, gid);
|
destination_name, uid);
|
||||||
|
|
||||||
if ((file_mode & ALLPERMS) != (dest_stbuf.st_mode & ALLPERMS))
|
if ((file_mode & ALLPERMS) != (dest_stbuf.st_mode & ALLPERMS))
|
||||||
return glnx_throw(error, "existing destination file %s does not match mode %o",
|
return glnx_throw(error, "existing destination file %s does not match mode %o",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue