diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-05-08 01:26:47 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-05-08 01:26:47 +0000 |
| commit | c0b8ca15f5fd40c29f2f286d2b2ebc9c71fca8cb (patch) | |
| tree | 84c87f0536666af5082585beb398e3fba89c0dc8 /lib/libdisk/create_chunk.c | |
| parent | 65a27a9ba43662d1c6795239e4d39f059d623a21 (diff) | |
Notes
Diffstat (limited to 'lib/libdisk/create_chunk.c')
| -rw-r--r-- | lib/libdisk/create_chunk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libdisk/create_chunk.c b/lib/libdisk/create_chunk.c index 6b1b1ebebaed..2ce62e92af5a 100644 --- a/lib/libdisk/create_chunk.c +++ b/lib/libdisk/create_chunk.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: create_chunk.c,v 1.10 1995/05/06 03:28:28 phk Exp $ + * $Id: create_chunk.c,v 1.11 1995/05/08 00:44:46 phk Exp $ * */ @@ -55,7 +55,7 @@ Fixup_FreeBSD_Names(struct disk *d, struct chunk *c) /* Try to give them the same as they had before */ for (c1 = c->part; c1 ; c1 = c1->next) { - if (!strcmp(c->name,"X")) continue; + if (strcmp(c1->name,"X")) continue; for(c3 = c->part; c3 ; c3 = c3->next) if (c1 != c3 && !strcmp(c3->name, c1->oname)) { goto newname; |
