From: Jim Meyering Date: Sun, 20 Aug 2000 20:49:34 +0000 (+0000) Subject: (cp_option_init): Initialize to DEREF_NEVER, not `0'. X-Git-Tag: FILEUTILS-4_0y~8 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=94d34806bd7c3125ea0a3ee7fe50cefb424cc7fd;p=thirdparty%2Fcoreutils.git (cp_option_init): Initialize to DEREF_NEVER, not `0'. --- diff --git a/src/mv.c b/src/mv.c index 6551b96f8a..4b7bcb0b88 100644 --- 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;