summaryrefslogtreecommitdiffstats
path: root/libmount/src/context_mount.c
diff options
context:
space:
mode:
authorVille Skyttä2013-04-07 10:12:07 +0200
committerKarel Zak2013-04-08 17:06:55 +0200
commit58c41e15b360eb6c873818150e68c900927b62cf (patch)
tree909ad8ad8f458a3e434aceb07baf7a764610afe9 /libmount/src/context_mount.c
parentuuidd.8: Document --debug and --quiet long options. (diff)
downloadkernel-qcow2-util-linux-58c41e15b360eb6c873818150e68c900927b62cf.tar.gz
kernel-qcow2-util-linux-58c41e15b360eb6c873818150e68c900927b62cf.tar.xz
kernel-qcow2-util-linux-58c41e15b360eb6c873818150e68c900927b62cf.zip
Spelling fixes.
Signed-off-by: Ville Skyttä <ville.skytta@iki.fi>
Diffstat (limited to 'libmount/src/context_mount.c')
-rw-r--r--libmount/src/context_mount.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmount/src/context_mount.c b/libmount/src/context_mount.c
index 3b280ab9b..d28736126 100644
--- a/libmount/src/context_mount.c
+++ b/libmount/src/context_mount.c
@@ -24,7 +24,7 @@
/*
* Kernel supports only one MS_PROPAGATION flag change by one mount(2) syscall,
- * to bypass this restriction we call mount(2) per flag. It's realy not a perfect
+ * to bypass this restriction we call mount(2) per flag. It's really not a perfect
* solution, but it's the same like to execute multiple mount(8) commands.
*
* We use cxt->addmounts (additional mounts) list to keep order of the requested
@@ -865,7 +865,7 @@ int mnt_context_do_mount(struct libmnt_context *cxt)
type = mnt_fs_get_fstype(cxt->fs);
if (type) {
if (strchr(type, ','))
- /* this only happen if fstab countains list of filesystems */
+ /* this only happens if fstab contains list of filesystems */
res = do_mount_by_pattern(cxt, type);
else
res = do_mount(cxt, NULL);