From ce9ccc8869b833c764ae6919321ce1126a24543f Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Sat, 16 Mar 2002 14:15:10 +0000 Subject: [PATCH] Fixed an SIGSEGV error in file forward --- ChangeLog | 2 ++ mbfido/forward.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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; }