diff options
author | phk <phk@FreeBSD.org> | 1995-05-08 00:44:46 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-05-08 00:44:46 +0000 |
commit | 7633746449bc56aa87613f2394c760cda88f01ba (patch) | |
tree | 59c109450ddd4c396984d189dd346a9eb63836ad /release/libdisk | |
parent | 16a0ad9d11d405294ae2804928b79fdb55f22fa2 (diff) | |
download | FreeBSD-src-7633746449bc56aa87613f2394c760cda88f01ba.zip FreeBSD-src-7633746449bc56aa87613f2394c760cda88f01ba.tar.gz |
Fix bug.
Diffstat (limited to 'release/libdisk')
-rw-r--r-- | release/libdisk/create_chunk.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/release/libdisk/create_chunk.c b/release/libdisk/create_chunk.c index dbc179a..6b1b1eb 100644 --- a/release/libdisk/create_chunk.c +++ b/release/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.9 1995/05/04 07:00:53 phk Exp $ + * $Id: create_chunk.c,v 1.10 1995/05/06 03:28:28 phk Exp $ * */ @@ -55,6 +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; for(c3 = c->part; c3 ; c3 = c3->next) if (c1 != c3 && !strcmp(c3->name, c1->oname)) { goto newname; |