From: Luca Boccassi Date: Fri, 7 Jul 2023 09:47:01 +0000 (+0100) Subject: typo: dont -> don't X-Git-Tag: v254-rc2~74 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=caf8495e90faa91182cc8666f197fd76aaee5919;p=thirdparty%2Fsystemd.git typo: dont -> don't --- diff --git a/src/test/test-mountpoint-util.c b/src/test/test-mountpoint-util.c index 669b0781004..87badfc1128 100644 --- a/src/test/test-mountpoint-util.c +++ b/src/test/test-mountpoint-util.c @@ -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))); }