From cab2caa1701e24fee77cd34d21eeb4d94b2d5141 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 18 Feb 2026 08:29:13 +0100 Subject: [PATCH] mountpoint-util: fix typo in comment --- src/basic/mountpoint-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/mountpoint-util.c b/src/basic/mountpoint-util.c index 10c4f75efd2..624a3fcbed0 100644 --- a/src/basic/mountpoint-util.c +++ b/src/basic/mountpoint-util.c @@ -621,7 +621,7 @@ bool mount_new_api_supported(void) { if (cache >= 0) return cache; - /* This is the newer API among the ones we use, so use it as boundary */ + /* This is the newest API among the ones we use, so use it as boundary */ r = RET_NERRNO(mount_setattr(-EBADF, NULL, 0, NULL, 0)); if (r == 0 || ERRNO_IS_NOT_SUPPORTED(r)) /* This should return an error if it is working properly */ return (cache = false); -- 2.47.3