Fix reject accept
Instead of accepting the listed nations, rejected the nation listed
last, and accepted all the others. Broken in commit 6844c94b
, v4.3.4.
This commit is contained in:
parent
35ef345ecb
commit
6a1078f8a0
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ putreject(struct natstr *np, natid them, int how, int what)
|
||||||
if (how)
|
if (how)
|
||||||
np->nat_rejects[them] |= what;
|
np->nat_rejects[them] |= what;
|
||||||
else
|
else
|
||||||
np->nat_rejects[them] &= what;
|
np->nat_rejects[them] &= ~what;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue