From 6f0c5c6315ed85cb6a4761ca4b187dd6eee04b35 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Sun, 9 Nov 2003 10:45:26 +0000 Subject: [PATCH] Remove some comments that are no longer valid. --- src/lib/common/nat.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/common/nat.c b/src/lib/common/nat.c index 7c44210e..df040243 100644 --- a/src/lib/common/nat.c +++ b/src/lib/common/nat.c @@ -90,7 +90,6 @@ getrejects(natid them, struct natstr *np) ind = them / 4; shift = 12 - ((them - ((them / 4) << 2)) * 4); - /* the 07 should *really* be 017 */ reject = (np->nat_rejects[ind] >> shift) & 0x0f; return reject; } @@ -138,7 +137,6 @@ putreject(struct natstr *np, natid them, int how, int what) int newrej; int ind; - /* This 07 should be changed to 017 after the current game is over */ what &= 0x0f; ind = them / 4; shift = 12 - ((them - ((them / 4) << 2)) * 4);