diff --git a/ChangeLog b/ChangeLog index f63e8030..5e39892d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4662,6 +4662,8 @@ v0.33.20 10-Feb-2002 articles where a Reply-To: header is present. It was not possible to disconnect file areas. Added nopper code to full mailscan. + Fixed a problem that caused a SIGSEGV when a node was in the + ticfiles setup to forward file to and there was no noderecord. mball: Will not crash anymore when it needs more then 10 minutes to diff --git a/mbfido/forward.c b/mbfido/forward.c index 9024142c..0319dea9 100644 --- a/mbfido/forward.c +++ b/mbfido/forward.c @@ -58,7 +58,7 @@ void ForwardFile(fidoaddr Node, fa_list *sbl) Syslog('+', "Forward file to %s", aka2str(Node)); if (!SearchNode(Node)) { - WriteError("No forward, node %s not known", Node); + WriteError("Database corrupt, node %s not in setup", aka2str(Node)); return; }