From 0e3b6439453e340c3d51fc2cf0410abcd092c57b Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Fri, 24 May 2002 18:06:14 +0000 Subject: [PATCH] Small logging fix for mbfile add files to bbs --- mbfido/mbfutil.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mbfido/mbfutil.c b/mbfido/mbfutil.c index 05bca839..56ff0396 100644 --- a/mbfido/mbfutil.c +++ b/mbfido/mbfutil.c @@ -311,9 +311,9 @@ int AddFile(struct FILERecord fdb, int Area, char *DestPath, char *FromPath) FILE *fp1, *fp2; int i, rc, Insert, Done = FALSE, Found = FALSE; - mkdirs(DestPath, 0755); + mkdirs(DestPath, 0775); if ((rc = file_cp(FromPath, DestPath))) { - WriteError("Can't move file in place"); + WriteError("Can't copy file in place"); if (!do_quiet) printf("Can't copy file to %s, %s\n", DestPath, strerror(rc)); return FALSE;