From 64fbdc0f91f77908c63386f3db4d58e007a78963 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 28 Sep 2017 13:01:33 +0200 Subject: [PATCH] nspawn: properly report all kinds of changed UID/GID when patching things for userns We forgot to propagate one chmod(). --- src/nspawn/nspawn-patch-uid.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/nspawn/nspawn-patch-uid.c b/src/nspawn/nspawn-patch-uid.c index 1a3f129db0c..f861db879a7 100644 --- a/src/nspawn/nspawn-patch-uid.c +++ b/src/nspawn/nspawn-patch-uid.c @@ -347,6 +347,8 @@ static int recurse_fd(int fd, bool donate_fd, const struct stat *st, uid_t shift } if (r < 0) goto finish; + if (r > 0) + changed = true; if (S_ISDIR(st->st_mode)) { _cleanup_closedir_ DIR *d = NULL; -- 2.47.3