From: Lennart Poettering Date: Wed, 18 Feb 2026 07:29:13 +0000 (+0100) Subject: mountpoint-util: fix typo in comment X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cab2caa1701e24fee77cd34d21eeb4d94b2d5141;p=thirdparty%2Fsystemd.git mountpoint-util: fix typo in comment --- 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);