diff options
author | jkh <jkh@FreeBSD.org> | 1997-06-13 11:00:13 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1997-06-13 11:00:13 +0000 |
commit | b6e8cc8fa1fad4e10e6bbd6224827d00e3ef7abb (patch) | |
tree | bec6bef58dd21e6f762d1a1e21d792c9989c0344 /usr.sbin | |
parent | 8faf93d931447e733ebb93744c0e4401d094bfc1 (diff) | |
download | FreeBSD-src-b6e8cc8fa1fad4e10e6bbd6224827d00e3ef7abb.zip FreeBSD-src-b6e8cc8fa1fad4e10e6bbd6224827d00e3ef7abb.tar.gz |
reverse polarity on bit-flip from 2.2
Diffstat (limited to 'usr.sbin')
-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 80a8ebe..a003fcd 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; } |