]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
homed: don't log error we don't have 36902/head
authorLennart Poettering <lennart@poettering.net>
Mon, 31 Mar 2025 09:51:38 +0000 (11:51 +0200)
committerLennart Poettering <lennart@poettering.net>
Mon, 31 Mar 2025 09:51:38 +0000 (11:51 +0200)
src/home/homed-manager.c

index 2cf70e78b750ff8be8b17e11e8f93fb7da8c8050..5a56b3de2378fbf787a99c1e29d8b6ec5616f20d 100644 (file)
@@ -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;
                 }
         }