summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-08-20 20:49:44 +0000
committerJim Meyering <jim@meyering.net>2000-08-20 20:49:44 +0000
commit5b55669c7ae23fab0ef7d8ecb81a406d3d62cd5d (patch)
tree7d3f9c159dca9ae69956af72fe4185255c57df7a /src
parent94d34806bd7c3125ea0a3ee7fe50cefb424cc7fd (diff)
downloadcoreutils-5b55669c7ae23fab0ef7d8ecb81a406d3d62cd5d.tar.xz
(cp_option_init): Initialize to DEREF_ALWAYS, not `1'.
Diffstat (limited to 'src')
-rw-r--r--src/install.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/install.c b/src/install.c
index 31d934673..3eb386d7f 100644
--- a/src/install.c
+++ b/src/install.c
@@ -188,7 +188,7 @@ static void
cp_option_init (struct cp_options *x)
{
x->copy_as_regular = 1;
- x->dereference = 1;
+ x->dereference = DEREF_ALWAYS;
x->force = 1;
/* If unlink fails, try to proceed anyway. */