mount: fix bind mount success message

* sys-utils/mount.c (success_message): s/binded/bound/.

Signed-off-by: Bernhard Voelker <mail@bernhard-voelker.de>
This commit is contained in:
Bernhard Voelker 2013-01-28 16:20:24 +01:00 committed by Karel Zak
parent d38a30a3e0
commit 9b4257c8b3
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ static void success_message(struct libmnt_context *cxt)
if (mflags & MS_MOVE)
printf(_("%s: %s moved to %s.\n"), pr, src, tgt);
else if (mflags & MS_BIND)
printf(_("%s: %s binded on %s.\n"), pr, src, tgt);
printf(_("%s: %s bound on %s.\n"), pr, src, tgt);
else if (mflags & MS_PROPAGATION) {
if (src && strcmp(src, "none") != 0 && tgt)
printf(_("%s: %s mounted on %s.\n"), pr, src, tgt);