aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarel Zak <kzak@redhat.com>2016-10-24 15:05:56 +0200
committerKarel Zak <kzak@redhat.com>2016-10-24 15:05:56 +0200
commit42b02524de1d081422fcc610417b8dd15739c108 (patch)
tree23192bdf881be4f475882f1c224c1c95cee2a2eb
parent91891979f77e62eef4ed32ac14f10b78a214b093 (diff)
parent31fb945332985321b89f21daa37e23a8882b652b (diff)
downloadutil-linux-42b02524de1d081422fcc610417b8dd15739c108.tar.gz
Merge branch 'master' of https://github.com/yurchor/util-linux
* 'master' of https://github.com/yurchor/util-linux: Fix minor typos
-rw-r--r--Documentation/poeigl.txt2
-rw-r--r--misc-utils/findmnt-verify.c4
-rw-r--r--misc-utils/logger.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/poeigl.txt b/Documentation/poeigl.txt
index 94f51a9b47..9f14d3f02c 100644
--- a/Documentation/poeigl.txt
+++ b/Documentation/poeigl.txt
@@ -326,7 +326,7 @@ Version 1.11a (16-Feb-93): changes since 1.9a:
can't just open the tty's again.
Version 1.9a (18-Jan-93): changes since 1.8a:
- Rick Faith sent me man-pages for most of the untilities in this
+ Rick Faith sent me man-pages for most of the utilities in this
package. They are now included.
Steven S. Dick <ssd@nevets.oau.org> sent me a patch for login.c
diff --git a/misc-utils/findmnt-verify.c b/misc-utils/findmnt-verify.c
index 1430c945d2..b2a88c5f6b 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);
}
diff --git a/misc-utils/logger.c b/misc-utils/logger.c
index 4fb650a42f..63c43993ca 100644
--- a/misc-utils/logger.c
+++ b/misc-utils/logger.c
@@ -908,7 +908,7 @@ static void logger_command_line(const struct logger_ctl *ctl, char **argv)
static void logger_stdin(struct logger_ctl *ctl)
{
- /* note: we re-generate the the syslog header for each log message to
+ /* note: we re-generate the syslog header for each log message to
* update header timestamps and to reflect possible priority changes.
* The initial header is generated by logger_open().
*/