From f5bf5aca870c475d0621003b43eacdde808539c7 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Fri, 17 Oct 2025 03:32:12 +0200 Subject: Fixed bogus if --- FICS/obsproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FICS/obsproc.c b/FICS/obsproc.c index 27c5156..9eaea96 100644 --- a/FICS/obsproc.c +++ b/FICS/obsproc.c @@ -1898,7 +1898,7 @@ jsave_history(int p, char save_spot, int p1, int from, char *to_file) save_spot); unlink(jfname); - if (fics_copyfile(HistoryFname, jfname)) { + if (!fics_copyfile(HistoryFname, jfname)) { pprintf(p, "System command in jsave_history " "failed!\n"); pprintf(p, "Please report this to an admin.\n"); -- cgit v1.2.3