]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
mount: fix bind mount success message
authorBernhard Voelker <mail@bernhard-voelker.de>
Mon, 28 Jan 2013 15:20:24 +0000 (16:20 +0100)
committerKarel Zak <kzak@redhat.com>
Wed, 6 Feb 2013 10:12:46 +0000 (11:12 +0100)
* sys-utils/mount.c (success_message): s/binded/bound/.

Signed-off-by: Bernhard Voelker <mail@bernhard-voelker.de>
sys-utils/mount.c

index e98a688adc44474d0da52ffc26e4549d9eaeb692..0c74ed9006d3b231d1c083ff62e68f9c2f2c6016 100644 (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);