summaryrefslogtreecommitdiffstats
path: root/misc-utils/findmnt-verify.c
diff options
context:
space:
mode:
authorYuri Chornoivan2016-10-20 18:08:57 +0200
committerYuri Chornoivan2016-10-20 18:08:57 +0200
commit31fb945332985321b89f21daa37e23a8882b652b (patch)
treea1deb87566e487ebd03bbb50ebb1b771f92f21af /misc-utils/findmnt-verify.c
parentbuild-sys: use ncurses-config rather than pkg-config (diff)
downloadkernel-qcow2-util-linux-31fb945332985321b89f21daa37e23a8882b652b.tar.gz
kernel-qcow2-util-linux-31fb945332985321b89f21daa37e23a8882b652b.tar.xz
kernel-qcow2-util-linux-31fb945332985321b89f21daa37e23a8882b652b.zip
Fix minor typos
Diffstat (limited to 'misc-utils/findmnt-verify.c')
-rw-r--r--misc-utils/findmnt-verify.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc-utils/findmnt-verify.c b/misc-utils/findmnt-verify.c
index 1430c945d..b2a88c5f6 100644
--- a/misc-utils/findmnt-verify.c
+++ b/misc-utils/findmnt-verify.c
@@ -411,7 +411,7 @@ static int verify_fstype(struct verify_context *vfy)
isswap = 1;
if (!isswap && !isauto && !none && !is_supported_filesystem(vfy, type))
- verify_warn(vfy, _("%s seems unspported by the current kernel"), type);
+ verify_warn(vfy, _("%s seems unsupported by the current kernel"), type);
}
realtype = mnt_get_fstype(src, &ambi, cache);
@@ -428,7 +428,7 @@ static int verify_fstype(struct verify_context *vfy)
return verify_err(vfy, _("%s does not match with on-disk %s"), type, realtype);
if (!isswap && !is_supported_filesystem(vfy, realtype))
- return verify_err(vfy, _("on-disk %s seems unspported by the current kernel"), realtype);
+ return verify_err(vfy, _("on-disk %s seems unsupported by the current kernel"), realtype);
verify_ok(vfy, _("FS type is %s"), realtype);
}