diff options
| author | Markus Uhlin <markus@nifty-networks.net> | 2025-10-17 04:14:46 +0200 |
|---|---|---|
| committer | Markus Uhlin <markus@nifty-networks.net> | 2025-10-17 04:14:46 +0200 |
| commit | 8574eff6927d0e1a6bcee68a0039ef2186de3b6d (patch) | |
| tree | 11dacbf6ff5c37f4880042ffd788e53f9f8b6510 /FICS/obsproc.c | |
| parent | 2c9bc4fcc3a7084146e832856f1237ecf5a8fb32 (diff) | |
Added missing argument to fics_copyfile()
Diffstat (limited to 'FICS/obsproc.c')
| -rw-r--r-- | FICS/obsproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FICS/obsproc.c b/FICS/obsproc.c index 9eaea96..375ced3 100644 --- a/FICS/obsproc.c +++ b/FICS/obsproc.c @@ -1828,7 +1828,7 @@ jsave_journalentry(int p, char save_spot, int p1, char from_spot, char *to_file) name_to, save_spot); unlink(fname2); - if (!fics_copyfile(fname, fname2)) { + if (!fics_copyfile(fname, fname2, true)) { pprintf(p, "System command in jsave_journalentry failed!\n"); pprintf(p, "Please report this to an admin.\n"); fprintf(stderr, "FICS: System command failed in " @@ -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, true)) { pprintf(p, "System command in jsave_history " "failed!\n"); pprintf(p, "Please report this to an admin.\n"); |
