From: NeilBrown Date: Wed, 13 Sep 2023 07:08:30 +0000 (+1000) Subject: Disable *all* backups when --no-backups used X-Git-Url: http://git.neil.brown.name/?a=commitdiff_plain;p=wiggle.git Disable *all* backups when --no-backups used The patch that introduced --no-backups only disabled backups in "-B" mode, not with normal usage. This patch extended that to all backups to "*.porig". Fixes-github-issue: #25 Signed-off-by: NeilBrown --- diff --git a/wiggle.c b/wiggle.c index ccd2f7f..3e88909 100644 --- a/wiggle.c +++ b/wiggle.c @@ -424,7 +424,7 @@ static int do_diff(int argc, char *argv[], int obj, int ispatch, static int do_merge(int argc, char *argv[], int obj, int blanks, int reverse, int replace, char *outfilename, int ignore, int show_wiggles, - int quiet, int shortest) + int quiet, int shortest, int backup) { /* merge three files, A B C, so changed between B and C get made to A */ @@ -502,8 +502,8 @@ static int do_merge(int argc, char *argv[], int obj, int blanks, strcpy(replacename, argv[0]); strcpy(orignew, argv[0]); strcat(orignew, ".porig"); - if (open(orignew, O_RDONLY) >= 0 || - errno != ENOENT) { + if (backup && (open(orignew, O_RDONLY) >= 0 || + errno != ENOENT)) { fprintf(stderr, "%s: %s already exists\n", wiggle_Cmd, orignew); @@ -588,7 +588,7 @@ static int do_merge(int argc, char *argv[], int obj, int blanks, return 2; } fclose(outfile); - if (rename(argv[0], orignew) == 0 && + if ((!backup || rename(argv[0], orignew) == 0) && rename(replacename, argv[0]) == 0) /* all ok */; else { @@ -611,7 +611,7 @@ static int do_merge(int argc, char *argv[], int obj, int blanks, static int multi_merge(int argc, char *argv[], int obj, int blanks, int reverse, int ignore, int show_wiggles, int replace, int strip, - int quiet, int shortest) + int quiet, int shortest, int backup) { FILE *f; char *filename; @@ -654,7 +654,7 @@ static int multi_merge(int argc, char *argv[], int obj, int blanks, av[0] = pl[i].file; av[1] = name; rv |= do_merge(2, av, obj, blanks, reverse, 1, NULL, ignore, - show_wiggles, quiet, shortest); + show_wiggles, quiet, shortest, backup); } return rv; } @@ -876,13 +876,15 @@ int main(int argc, char *argv[]) reverse, ignore, show_wiggles, replace, strip, - quiet, shortest); + quiet, shortest, + backup); else exit_status = do_merge( argc-optind, argv+optind, obj, ignore_blanks, reverse, replace, outfile, - ignore, show_wiggles, quiet, shortest); + ignore, show_wiggles, quiet, shortest, + backup); break; } exit(exit_status);