From: Lennart Poettering Date: Mon, 31 Mar 2025 09:51:38 +0000 (+0200) Subject: homed: don't log error we don't have X-Git-Tag: v256.13~13 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=92d03c858c59b94d13049ff04da2135c1f22c4dd;p=thirdparty%2Fsystemd.git homed: don't log error we don't have (cherry picked from commit 521b6bb1177b534db6cab28c889e6550680517c4) (cherry picked from commit 03605d767ffcd446da876a97de967d4d8b56272c) --- diff --git a/src/home/homed-manager.c b/src/home/homed-manager.c index 7669cbb2696..75d9772a4c8 100644 --- a/src/home/homed-manager.c +++ b/src/home/homed-manager.c @@ -557,7 +557,7 @@ static int search_quota(uid_t uid, const char *exclude_quota_path) { if ((FLAGS_SET(req.dqb_valid, QIF_SPACE) && req.dqb_curspace > 0) || (FLAGS_SET(req.dqb_valid, QIF_INODES) && req.dqb_curinodes > 0)) { - log_debug_errno(errno, "Quota reports UID " UID_FMT " occupies disk space on %s.", uid, where); + log_debug("Quota reports UID " UID_FMT " occupies disk space on %s.", uid, where); return 1; } }