]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
homed: don't log error we don't have
authorLennart Poettering <lennart@poettering.net>
Mon, 31 Mar 2025 09:51:38 +0000 (11:51 +0200)
committerLuca Boccassi <luca.boccassi@gmail.com>
Tue, 8 Apr 2025 19:52:11 +0000 (20:52 +0100)
(cherry picked from commit 521b6bb1177b534db6cab28c889e6550680517c4)
(cherry picked from commit 03605d767ffcd446da876a97de967d4d8b56272c)

src/home/homed-manager.c

index 7669cbb2696d2c57cfe95b5d0aa10e04e272643c..75d9772a4c8a966d5ba7ad4aab01f14ebf1cfaed 100644 (file)
@@ -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;
                 }
         }