diff options
author | Adam Kwolek <adam.kwolek@intel.com> | 2011-02-08 14:30:37 +0100 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2011-02-09 03:47:55 +0100 |
commit | e7ff7e4092dc9bd94bf9e50223061ecbf8b37e90 (patch) | |
tree | 68c102c53659dc5088538527aec0ae92becdc7f1 /super-intel.c | |
parent | Spare migration tests updated (diff) | |
download | mdadm-e7ff7e4092dc9bd94bf9e50223061ecbf8b37e90.tar.xz mdadm-e7ff7e4092dc9bd94bf9e50223061ecbf8b37e90.zip |
imsm: FIX: Wrong output string format
On wrong starting container reshape conditions, mdadm returns information on console:
mdadmimsm: Operation is not allowed on this container
it is changed to:
mdadm: (imsm) Operation is not allowed on this container
Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'super-intel.c')
-rw-r--r-- | super-intel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/super-intel.c b/super-intel.c index 59356e05..6a21b26b 100644 --- a/super-intel.c +++ b/super-intel.c @@ -7097,8 +7097,8 @@ static int imsm_reshape_super(struct supertype *st, long long size, int level, free(u); } else { - fprintf(stderr, Name "imsm: Operation is not allowed " - "on this container\n"); + fprintf(stderr, Name ": (imsm) Operation " + "is not allowed on this container\n"); } } else { /* On volume level we support following operations |