]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(cp_option_init): Initialize to DEREF_NEVER, not `0'.
authorJim Meyering <jim@meyering.net>
Sun, 20 Aug 2000 20:49:34 +0000 (20:49 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 20 Aug 2000 20:49:34 +0000 (20:49 +0000)
src/mv.c

index 6551b96f8a465a8845471938183ffd5cf8a28bb9..4b7bcb0b88122daa38275b2099576fd4e5ac439c 100644 (file)
--- a/src/mv.c
+++ b/src/mv.c
@@ -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;