diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2004-09-13 12:13:04 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2004-09-13 12:13:04 +0000 |
commit | 3e60f6731d159efbb0ff3ff85c40e7965b19de1e (patch) | |
tree | 02006b17d8ae438526ef771651e91138ea93b838 /src | |
parent | 615d4b2cc83fb7d976d3a88ffbae2a10ba201541 (diff) | |
download | coreutils-3e60f6731d159efbb0ff3ff85c40e7965b19de1e.tar.xz |
Adjust to backup file rename.
Diffstat (limited to 'src')
-rw-r--r-- | src/install.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/install.c b/src/install.c index f69eaaf4d..b2484540f 100644 --- a/src/install.c +++ b/src/install.c @@ -154,7 +154,7 @@ cp_option_init (struct cp_options *x) x->recursive = false; x->sparse_mode = SPARSE_AUTO; x->symbolic_link = false; - x->backup_type = none; + x->backup_type = no_backups; /* Create destination files initially writable so we can run strip on them. Although GNU strip works fine on read-only files, some others @@ -320,7 +320,7 @@ main (int argc, char **argv) x.backup_type = (make_backups ? xget_version (_("backup type"), version_control_string) - : none); + : no_backups); n_files = argc - optind; file = argv + optind; |