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:
Dan Nicholson 2022-10-13 06:41:55 -06:00 committed by GitHub
commit 1075e58c16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -684,7 +684,7 @@ _checkout_overlayfs_whiteout_at (OstreeRepo *repo,
if (uid != dest_stbuf.st_uid)
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))
return glnx_throw(error, "existing destination file %s does not match mode %o",