aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/copyfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'FICS/copyfile.c')
-rw-r--r--FICS/copyfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/copyfile.c b/FICS/copyfile.c
index 86ec3bf..f2f6a9c 100644
--- a/FICS/copyfile.c
+++ b/FICS/copyfile.c
@@ -107,6 +107,6 @@ main(int argc, char *argv[])
{
if (argc != 3)
errx(1, "bogus number of args");
- return (fics_copyfile(argv[1], argv[2]) ? EXIT_SUCCESS : EXIT_FAILURE);
+ return (fics_copyfile(argv[1], argv[2], true) ? 0 : 1);
}
#endif