reverse polarity on bit-flip from 2.2

This commit is contained in:
Jordan K. Hubbard 1997-06-13 11:00:13 +00:00
parent f83d9fdeb9
commit 189b7e9102
2 changed files with 4 additions and 4 deletions

View File

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

View File

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