Improve error message when mode is set twice.

Signed-off-by: Neil Brown <neilb@cse.unsw.edu.au>
This commit is contained in:
Neil Brown 2005-04-04 05:16:29 +00:00
parent 6f7e85bd16
commit e6b64cd05c
2 changed files with 2 additions and 3 deletions

View File

@ -15,8 +15,7 @@ Changes Prior to 1.9.0 release
it to find devices, rather than only once. it to find devices, rather than only once.
- Make "mdadm -Ss" stop stacked devices properly, by reversing the - Make "mdadm -Ss" stop stacked devices properly, by reversing the
order in which arrays are stopped. order in which arrays are stopped.
- Correct error message when last device to be added to an array - Improve some error messages.
fails.
Changes Prior to 1.8.0 release Changes Prior to 1.8.0 release
- Makefile cleanup from Luca Berra <bluca@comedia.it> - Makefile cleanup from Luca Berra <bluca@comedia.it>

View File

@ -172,7 +172,7 @@ int main(int argc, char *argv[])
fprintf(stderr, "--%s", long_options[option_index].name); fprintf(stderr, "--%s", long_options[option_index].name);
else else
fprintf(stderr, "-%c", opt); fprintf(stderr, "-%c", opt);
fprintf(stderr, " would set mode to %s, but it is already %s.\n", fprintf(stderr, " would set mdadm mode to \"%s\", but it is already set to \"%s\".\n",
map_num(modes, newmode), map_num(modes, newmode),
map_num(modes, mode)); map_num(modes, mode));
exit(2); exit(2);