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: v258-rc1~988^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F36902%2Fhead;p=thirdparty%2Fsystemd.git homed: don't log error we don't have --- diff --git a/src/home/homed-manager.c b/src/home/homed-manager.c index 2cf70e78b75..5a56b3de237 100644 --- a/src/home/homed-manager.c +++ b/src/home/homed-manager.c @@ -576,7 +576,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; } }