]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
mountpoint-util: fix typo in comment
authorLennart Poettering <lennart@amutable.com>
Wed, 18 Feb 2026 07:29:13 +0000 (08:29 +0100)
committerLennart Poettering <lennart@amutable.com>
Thu, 19 Feb 2026 14:08:20 +0000 (15:08 +0100)
src/basic/mountpoint-util.c

index 10c4f75efd283ecbe01ff63a063bdc3752d75461..624a3fcbed065314694524f24ebe0d427a88bfd9 100644 (file)
@@ -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);