diff options
-rw-r--r-- | src/home/homed-manager.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/home/homed-manager.c b/src/home/homed-manager.c index 7d951bee3b..54761175c3 100644 --- a/src/home/homed-manager.c +++ b/src/home/homed-manager.c @@ -512,6 +512,8 @@ static int search_quota(uid_t uid, const char *exclude_quota_path) { if (r < 0) { if (ERRNO_IS_NOT_SUPPORTED(r)) log_debug_errno(r, "No UID quota support on %s, ignoring.", where); + else if (ERRNO_IS_PRIVILEGE(r)) + log_debug_errno(r, "UID quota support for %s prohibited, ignoring.", where); else log_warning_errno(r, "Failed to query quota on %s, ignoring: %m", where); |