diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-06-13 11:00:13 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-06-13 11:00:13 +0000 |
| commit | 189b7e91022aa2ed426aac7d52d4e807175b178b (patch) | |
| tree | 32696815f4d91c2545e40c5ca8ba6e777287a81e /usr.sbin/sysinstall | |
| parent | f83d9fdeb976bf0e23f9ab585face1663cef18e4 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/sysinstall')
| -rw-r--r-- | usr.sbin/sysinstall/dist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/dist.c b/usr.sbin/sysinstall/dist.c index 80a8ebef2e0eb..a003fcd5e5b8d 100644 --- a/usr.sbin/sysinstall/dist.c +++ b/usr.sbin/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.108 1997/06/05 09:47:56 jkh Exp $ + * $Id: dist.c,v 1.109 1997/06/09 01:19:43 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -391,7 +391,7 @@ distSetByName(Distribution *dist, char *name) if (!dist[i].my_dir) continue; else if (!strcmp(dist[i].my_name, name)) { - *(dist[i].my_mask) &= ~(dist[i].my_bit); + *(dist[i].my_mask) |= dist[i].my_bit; status = TRUE; break; } |
