diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-07-01 03:50:58 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-07-01 03:50:58 +0000 |
| commit | 0395b68640f8015e5e9328a26698cd07c7f4f778 (patch) | |
| tree | 91fc043d478518ea9260aab64fa7548b1e6b5445 /release | |
| parent | 057b294dc0d6deddbd1fffc0cca55f68e5d944e1 (diff) | |
Notes
Diffstat (limited to 'release')
| -rw-r--r-- | release/sysinstall/dist.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/release/sysinstall/dist.c b/release/sysinstall/dist.c index a003fcd5e5b8d..cf45dead29ed6 100644 --- a/release/sysinstall/dist.c +++ b/release/sysinstall/dist.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: dist.c,v 1.109 1997/06/09 01:19:43 jkh Exp $ + * $Id: dist.c,v 1.110 1997/06/13 11:00:13 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -393,13 +393,10 @@ distSetByName(Distribution *dist, char *name) else if (!strcmp(dist[i].my_name, name)) { *(dist[i].my_mask) |= dist[i].my_bit; status = TRUE; - break; } else if (dist[i].my_dist) { - if (distSetByName(dist[i].my_dist, name)) { + if (distSetByName(dist[i].my_dist, name)) status = TRUE; - break; - } } } return status; |
