Experimental hatch seenby change

This commit is contained in:
Michiel Broek 2002-11-13 20:50:39 +00:00
parent 62c3b71c98
commit 6108ba6050
2 changed files with 4 additions and 2 deletions

View File

@ -97,6 +97,8 @@ v0.35.05 19-Oct-2002
node, this was not processed in the same session.
Moved the ^aTID kludge to the top of the exported message
after the last kludge so people won't complain anymore.
Experimental change for hatched ticfiles to force including
of our own area aka. TEST TEST !!
mbtask:
Removed debug logging of "does" info.

View File

@ -731,8 +731,8 @@ int ProcessTic(fa_list *sbl)
* Add all our system aka's to the seenby lines in the same zone
*/
for (i = 0; i < 40; i++) {
if (CFG.akavalid[i] && (tic.Aka.zone == CFG.aka[i].zone) &&
!((tic.Aka.net == CFG.aka[i].net) && (tic.Aka.node == CFG.aka[i].node))) {
if (CFG.akavalid[i] && (tic.Aka.zone == CFG.aka[i].zone) /* &&
!((tic.Aka.net == CFG.aka[i].net) && (tic.Aka.node == CFG.aka[i].node)) */) {
sprintf(sbe, "%u:%u/%u", CFG.aka[i].zone, CFG.aka[i].net, CFG.aka[i].node);
fill_list(&sbl, sbe, NULL);
}