summaryrefslogtreecommitdiffstats
path: root/libmount/src/context_mount.c
diff options
context:
space:
mode:
authorPetr Uzel2011-11-09 10:10:52 +0100
committerKarel Zak2011-11-09 10:23:59 +0100
commit26e42d8123843d09926f989040dec8169c1de62f (patch)
treee02c602046e2217fa8a0e89cb1d15ab2f57eb948 /libmount/src/context_mount.c
parentwhereis: remove unused value warning (diff)
downloadkernel-qcow2-util-linux-26e42d8123843d09926f989040dec8169c1de62f.tar.gz
kernel-qcow2-util-linux-26e42d8123843d09926f989040dec8169c1de62f.tar.xz
kernel-qcow2-util-linux-26e42d8123843d09926f989040dec8169c1de62f.zip
libmount: fix trivial typos in debugging output
Signed-off-by: Petr Uzel <petr.uzel@suse.cz>
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 bcc4cdd12..7b4c0bae3 100644
--- a/libmount/src/context_mount.c
+++ b/libmount/src/context_mount.c
@@ -461,7 +461,7 @@ static int do_mount_by_pattern(struct libmnt_context *cxt, const char *pattern)
*/
char *p, *p0;
- DBG(CXT, mnt_debug_h(cxt, "tring mount by FS pattern list"));
+ DBG(CXT, mnt_debug_h(cxt, "trying to mount by FS pattern list"));
p0 = p = strdup(pattern);
if (!p)
@@ -483,7 +483,7 @@ static int do_mount_by_pattern(struct libmnt_context *cxt, const char *pattern)
/*
* try /etc/filesystems and /proc/filesystems
*/
- DBG(CXT, mnt_debug_h(cxt, "tring mount by filesystems lists"));
+ DBG(CXT, mnt_debug_h(cxt, "trying to mount by filesystems lists"));
rc = mnt_get_filesystems(&filesystems, neg ? pattern : NULL);
if (rc)