]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
typo: dont -> don't
authorLuca Boccassi <bluca@debian.org>
Fri, 7 Jul 2023 09:47:01 +0000 (10:47 +0100)
committerLuca Boccassi <luca.boccassi@gmail.com>
Fri, 7 Jul 2023 10:51:33 +0000 (11:51 +0100)
src/test/test-mountpoint-util.c

index 669b07810040b081b7d09efc4e6bcad5ecfa0199..87badfc112846fb616ef57db482fdebf9e5be918 100644 (file)
@@ -329,23 +329,23 @@ TEST(mount_option_supported) {
         int r;
 
         r = mount_option_supported("tmpfs", "size", "64M");
-        log_info("tmpfs supports size=64M: %s (%i)", r < 0 ? "dont know" : yes_no(r), r);
+        log_info("tmpfs supports size=64M: %s (%i)", r < 0 ? "don't know" : yes_no(r), r);
         assert_se(r > 0 || (r < 0 && ERRNO_IS_PRIVILEGE(r)));
 
         r = mount_option_supported("ext4", "discard", NULL);
-        log_info("ext4 supports discard: %s (%i)", r < 0 ? "dont know" : yes_no(r), r);
+        log_info("ext4 supports discard: %s (%i)", r < 0 ? "don't know" : yes_no(r), r);
         assert_se(r > 0 || r == -EAGAIN || (r < 0 && ERRNO_IS_PRIVILEGE(r)));
 
         r = mount_option_supported("tmpfs", "idontexist", "64M");
-        log_info("tmpfs supports idontexist: %s (%i)", r < 0 ? "dont know" : yes_no(r), r);
+        log_info("tmpfs supports idontexist: %s (%i)", r < 0 ? "don't know" : yes_no(r), r);
         assert_se(r == 0 || (r < 0 && ERRNO_IS_PRIVILEGE(r)));
 
         r = mount_option_supported("tmpfs", "ialsodontexist", NULL);
-        log_info("tmpfs supports ialsodontexist: %s (%i)", r < 0 ? "dont know" : yes_no(r), r);
+        log_info("tmpfs supports ialsodontexist: %s (%i)", r < 0 ? "don't know" : yes_no(r), r);
         assert_se(r == 0 || (r < 0 && ERRNO_IS_PRIVILEGE(r)));
 
         r = mount_option_supported("proc", "hidepid", "1");
-        log_info("proc supports hidepid=1: %s (%i)", r < 0 ? "dont know" : yes_no(r), r);
+        log_info("proc supports hidepid=1: %s (%i)", r < 0 ? "don't know" : yes_no(r), r);
         assert_se(r >= 0 || (r < 0 && ERRNO_IS_PRIVILEGE(r)));
 }