From: Chris Webb Date: Wed, 18 Jun 2008 20:30:39 +0000 (+1000) Subject: Fix bug in forced assemble. X-Git-Tag: mdadm-2.6.7.1~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28e37719aaef11a5d3aa940bac92063cbaca8648;p=thirdparty%2Fmdadm.git Fix bug in forced assemble. We are loading into the already-loaded 'st' instead of the newly create 'tst', which is clearly wrong. Resolves Debian Bugs 496334/499643/498505 --- diff --git a/Assemble.c b/Assemble.c index 36b23043..79f09126 100644 --- a/Assemble.c +++ b/Assemble.c @@ -656,7 +656,7 @@ int Assemble(struct supertype *st, char *mddev, int mdfd, continue; } tst = dup_super(st); - if (tst->ss->load_super(st,fd, NULL)) { + if (tst->ss->load_super(tst,fd, NULL)) { close(fd); fprintf(stderr, Name ": RAID superblock disappeared from %s - not updating.\n", devices[chosen_drive].devname);