]> git.pond.sub.org Git - empserver/commitdiff
Remove some comments that are no longer valid.
authorMarkus Armbruster <armbru@pond.sub.org>
Sun, 9 Nov 2003 10:45:26 +0000 (10:45 +0000)
committerMarkus Armbruster <armbru@pond.sub.org>
Sun, 9 Nov 2003 10:45:26 +0000 (10:45 +0000)
src/lib/common/nat.c

index 7c44210ef37558fc435c7fc91796e40fa2a2003e..df0402434b54be0f5d48c7c377f311c74ff22e76 100644 (file)
@@ -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);