diff options
author | Davidlohr Bueso | 2011-08-12 20:06:13 +0200 |
---|---|---|
committer | Karel Zak | 2011-08-15 14:28:21 +0200 |
commit | 19f411cbc68df897aff17443a416a15788c7a45a (patch) | |
tree | e0a5a887bb1ed30c5ddb2367beb012f33d7a548c /libmount | |
parent | hexdump: fix segfault due to uninitialized memory (diff) | |
download | kernel-qcow2-util-linux-19f411cbc68df897aff17443a416a15788c7a45a.tar.gz kernel-qcow2-util-linux-19f411cbc68df897aff17443a416a15788c7a45a.tar.xz kernel-qcow2-util-linux-19f411cbc68df897aff17443a416a15788c7a45a.zip |
grammar fixes
Correct grammar from "cannot found" to "cannot find".
Signed-off-by: Davidlohr Bueso <dave@gnu.org>
Diffstat (limited to 'libmount')
-rw-r--r-- | libmount/src/context_umount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmount/src/context_umount.c b/libmount/src/context_umount.c index 7c048d90a..bc08affc0 100644 --- a/libmount/src/context_umount.c +++ b/libmount/src/context_umount.c @@ -86,7 +86,7 @@ static int lookup_umount_fs(struct libmnt_context *cxt) } if (!fs) { - DBG(CXT, mnt_debug_h(cxt, "umount: cannot found %s in mtab", tgt)); + DBG(CXT, mnt_debug_h(cxt, "umount: cannot find %s in mtab", tgt)); return 0; } @@ -197,7 +197,7 @@ static int evaluate_permissions(struct libmnt_context *cxt) if (!(cxt->flags & MNT_FL_TAB_APPLIED)) { DBG(CXT, mnt_debug_h(cxt, - "cannot found %s in mtab and you are not root", + "cannot find %s in mtab and you are not root", mnt_fs_get_target(cxt->fs))); goto eperm; } |