diff options
author | Jim Meyering <jim@meyering.net> | 2000-08-20 20:49:34 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-08-20 20:49:34 +0000 |
commit | 94d34806bd7c3125ea0a3ee7fe50cefb424cc7fd (patch) | |
tree | 65f872b7b161b925a5e706801640a4facf421566 /src | |
parent | c93a607f058662ed2ab1984a381e07a85ddef2c9 (diff) | |
download | coreutils-94d34806bd7c3125ea0a3ee7fe50cefb424cc7fd.tar.xz |
(cp_option_init): Initialize to DEREF_NEVER, not `0'.
Diffstat (limited to 'src')
-rw-r--r-- | src/mv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -125,7 +125,7 @@ static void cp_option_init (struct cp_options *x) { x->copy_as_regular = 0; /* FIXME: maybe make this an option */ - x->dereference = 0; + x->dereference = DEREF_NEVER; x->force = 0; x->failed_unlink_is_fatal = 1; x->hard_link = 0; |