1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-17 15:27:36 +00:00
This commit is contained in:
Poul-Henning Kamp 1995-05-08 00:44:46 +00:00
parent 0881c9c4a1
commit f768aaceb4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8339
2 changed files with 4 additions and 2 deletions

View File

@ -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;

View File

@ -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;