diff --git a/src/security/security_dac.c b/src/security/security_dac.c index b8642d2d72a1eaac3015f59e89224728a2df739d..24b50e6ecb5e21dd2f2aa0c7863088c824fc7489 100644 --- a/src/security/security_dac.c +++ b/src/security/security_dac.c @@ -110,7 +110,7 @@ virSecurityDACSetOwnership(const char *path, int uid, int gid) } } - if (chown_errno == EOPNOTSUPP) { + if (chown_errno == EOPNOTSUPP || chown_errno == EINVAL) { VIR_INFO("Setting user and group to '%d:%d' on '%s' not supported by filesystem", uid, gid, path); } else if (chown_errno == EPERM) {