From: Lukasz Dorau Date: Wed, 19 Oct 2011 13:16:33 +0000 (+0200) Subject: imsm: fix: correct debug printing of the volume's name X-Git-Tag: mdadm-3.2.3~126 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c4acd1e5c83a7ad746e8d0a0949e097c8aaf525c;p=thirdparty%2Fmdadm.git imsm: fix: correct debug printing of the volume's name The volume's name is saved in the array of chars. All elements of the array can have nonzero values and the next byte in memory does not have to have the value of 0, so one must be cautious when printing out the volume's name. Signed-off-by: Lukasz Dorau Signed-off-by: NeilBrown --- diff --git a/super-intel.c b/super-intel.c index 2c1bf058..dfa85aa1 100644 --- a/super-intel.c +++ b/super-intel.c @@ -6642,9 +6642,9 @@ static struct mdinfo *imsm_activate_spare(struct active_array *a, * are removed from container. */ if (failed) { - dprintf("found failed disks in %s, check if there another" + dprintf("found failed disks in %.*s, check if there another" "failed sub-array.\n", - dev->volume); + MAX_RAID_SERIAL_LEN, dev->volume); /* check if states of the other volumes allow for rebuild */ for (i = 0; i < super->anchor->num_raid_devs; i++) { if (i != inst) {