]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
namespace: don't log misleading error in the r > 0 path
authorFrantisek Sumsal <frantisek@sumsal.cz>
Fri, 17 Apr 2026 13:51:40 +0000 (15:51 +0200)
committerFrantisek Sumsal <frantisek@sumsal.cz>
Fri, 17 Apr 2026 13:54:44 +0000 (15:54 +0200)
fd_is_fs_type() returns < 0 for errors, 0 for false, and > 0 for true, so
in the r > branch we'd most likely report EPERM together with the error
message which is misleading.

src/core/namespace.c

index ff4592b8b90cdc3b51c008218f4e119a544f0f95..1412ccce8bbcff767a1d77f5b34af152f552c066 100644 (file)
@@ -3662,7 +3662,7 @@ static int unpeel_get_fd(const char *mount_path, int *ret_fd) {
                         _exit(EXIT_FAILURE);
                 }
                 if (r > 0) {
-                        log_debug_errno(r, "'%s' is still an overlay after opening mount tree: %m", mount_path);
+                        log_debug("'%s' is still an overlay after opening mount tree", mount_path);
                         _exit(EXIT_FAILURE);
                 }