Adde debug logging

This commit is contained in:
Michiel Broek 2005-08-12 14:20:33 +00:00
parent 1883af5e74
commit ed3b1fcbe7
3 changed files with 9 additions and 0 deletions

View File

@ -2,6 +2,10 @@ $Id$
v0.71.4 12-Aug-2005
mbfido:
Added extra debug logging to trace an SIGSEG when forwarding
files.
v0.71.3 13-Jun-2005 - 12-Aug-2005

View File

@ -276,6 +276,7 @@ void ForwardFile(fidoaddr Node, fa_list *sbl)
free(queuedir);
free(listfile);
tidy_faddr(routeto);
Syslog('f', "forward done");
}

View File

@ -735,16 +735,20 @@ int ProcessTic(fa_list *sbl)
}
}
Syslog('f', "ProcessTic: post processing start");
Magic_ExecCommand();
Magic_CopyFile();
Magic_UnpackFile();
Magic_AdoptFile();
sprintf(Temp, "%s/%s", TIC.Inbound, TIC.TicName);
unlink(Temp);
free(Temp);
tidy_qualify(&qal);
Syslog('f', "ProcessTic: post processing end");
return 0;
}