diff --git a/ChangeLog b/ChangeLog index c01aaeba..595cec6e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -97,8 +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 !! + With local hatched files, the aka of the tic area was not added + to the seenby list. mbtask: Removed debug logging of "does" info. diff --git a/mbfido/forward.c b/mbfido/forward.c index c31c3c9f..8ec0f04e 100644 --- a/mbfido/forward.c +++ b/mbfido/forward.c @@ -328,7 +328,6 @@ void ForwardFile(fidoaddr Node, fa_list *sbl) WriteError("$Can't create %s", fname); } } - Syslog('p', "Forward almost done"); fsync(fileno(fl)); fclose(fl); @@ -344,7 +343,6 @@ void ForwardFile(fidoaddr Node, fa_list *sbl) free(queuedir); free(listfile); tidy_faddr(routeto); - Syslog('p', "Forward really done"); } diff --git a/mbfido/ptic.c b/mbfido/ptic.c index 1f24018e..364c3541 100644 --- a/mbfido/ptic.c +++ b/mbfido/ptic.c @@ -774,20 +774,14 @@ int ProcessTic(fa_list *sbl) while (GetTicSystem(&Link, First)) { First = FALSE; if ((Link.aka.zone) && (Link.sendto) && (!Link.pause)) { - Syslog('p', "Forward loop to %s", aka2str(Link.aka)); if (!((TIC.Aka.zone == Link.aka.zone) && (TIC.Aka.net == Link.aka.net) && (TIC.Aka.node == Link.aka.node) && (TIC.Aka.point == Link.aka.point))) { - Syslog('p', "Will send"); tic_out++; ForwardFile(Link.aka, sbl); - Syslog('p', "Did send"); - } else { - Syslog('p', "Will not send"); } } } } - Syslog('p', "Forwarding to all nodes done"); Magic_ExecCommand(); Magic_CopyFile(); @@ -798,7 +792,6 @@ int ProcessTic(fa_list *sbl) unlink(Temp); free(Temp); - Syslog('p', "ptic() done"); return 0; }