31 lines
982 B
Diff
31 lines
982 B
Diff
From 6c66abd34cccbb5b3c063f8f613e0c2faffc415f Mon Sep 17 00:00:00 2001
|
|
From: Panu Matilainen <pmatilai@redhat.com>
|
|
Date: Wed, 13 Dec 2023 11:57:50 +0200
|
|
Subject: [PATCH] Don't warn about missing user/group on skipped files
|
|
|
|
There's no reason to complain about missing user/group for entities
|
|
we don't create at all. It's cosmetical only, but "regressed" in the
|
|
4.17 fsm robustness rewrite.
|
|
|
|
Reported in https://issues.redhat.com/browse/RHEL-18037
|
|
---
|
|
lib/fsm.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/lib/fsm.c b/lib/fsm.c
|
|
index 2189bd84c..a54e43bae 100644
|
|
--- a/lib/fsm.c
|
|
+++ b/lib/fsm.c
|
|
@@ -903,7 +903,7 @@ int rpmPackageFilesInstall(rpmts ts, rpmte te, rpmfiles files,
|
|
fp->fpath = fsmFsPath(fi, fp->suffix);
|
|
|
|
/* Remap file perms, owner, and group. */
|
|
- rc = rpmfiStat(fi, 1, &fp->sb);
|
|
+ rc = rpmfiStat(fi, (fp->skip == 0), &fp->sb);
|
|
|
|
/* Hardlinks are tricky and handled elsewhere for install */
|
|
fp->setmeta = (fp->skip == 0) &&
|
|
--
|
|
2.43.0
|
|
|