]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
Fix minor typos
authorYuri Chornoivan <yurchor@ukr.net>
Fri, 4 Mar 2022 20:17:58 +0000 (22:17 +0200)
committerYuri Chornoivan <yurchor@ukr.net>
Fri, 4 Mar 2022 20:17:58 +0000 (22:17 +0200)
misc-utils/findmnt-verify.c
misc-utils/lsfd.c

index 6e4ce77bb820c78fcb43c98ef4bd7ae64d6e3d7f..d9a59c1a16cb3f53cc09628922b23ab34e34873f 100644 (file)
@@ -449,7 +449,7 @@ static int verify_fstype(struct verify_context *vfy)
        realtype = mnt_get_fstype(src, &ambi, cache);
 
        if (!realtype) {
-               const char *reson = errno ? strerror(errno) : _("reason uknown");
+               const char *reson = errno ? strerror(errno) : _("reason unknown");
 
                if (isauto)
                        verify_err(vfy, _("cannot detect on-disk filesystem type (%s)"), reson);
index 73d59bfb6270c182b266a6330d921f5c949f7b7c..49c3f4b1f2de41a2d058b40cd15c59d4999ddaed 100644 (file)
@@ -1259,7 +1259,7 @@ static void __attribute__((__noreturn__)) usage(void)
        fputs(_(" -u, --notruncate      don't truncate text in columns\n"), out);
        fputs(_(" -p, --pid  <pid(s)>   collect information only specified processes\n"), out);
        fputs(_(" -Q, --filter <expr>   apply display filter\n"), out);
-       fputs(_("     --debug-filter    dump the innternal data structure of filter and exit\n"), out);
+       fputs(_("     --debug-filter    dump the internal data structure of filter and exit\n"), out);
        fputs(_(" -C, --counter <name>:<expr>\n"
                "                       define custom counter for --summary output\n"), out);
        fputs(_("     --dump-counters   dump counter definitions\n"), out);
@@ -1356,7 +1356,7 @@ static struct counter_spec *new_counter_spec(const char *spec_str)
                     spec_str);
        if (sep[1] == '\0')
                errx(EXIT_FAILURE,
-                    _("empty ecounter expression given: -C/--counter %s"),
+                    _("empty counter expression given: -C/--counter %s"),
                     spec_str);
 
        /* Split the spec_str in to name and expr. */