From: Jim Meyering Date: Thu, 22 Nov 2001 10:54:31 +0000 (+0000) Subject: (cp_option_init): Initialize new member. X-Git-Tag: TEXTUTILS-2_0_17~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=42ad428793e4d2e8c43ef389cfcfd06aa17949d9;p=thirdparty%2Fcoreutils.git (cp_option_init): Initialize new member. (main): dest_info_init now takes a parameter. --- diff --git a/src/mv.c b/src/mv.c index f235dca9c2..1266adbf52 100644 --- a/src/mv.c +++ b/src/mv.c @@ -148,6 +148,7 @@ cp_option_init (struct cp_options *x) x->update = 0; x->verbose = 0; x->xstat = lstat; + x->dest_info = NULL; } /* If PATH is an existing directory, return nonzero, else 0. */ @@ -505,7 +506,7 @@ main (int argc, char **argv) The problem it is used to detect can arise only if there are two or more files to move. */ if (last_file_idx) - dest_info_init (); + dest_info_init (&x); for (i = 0; i <= last_file_idx; ++i) errors |= movefile (file[i], target_directory, dest_is_dir, &x);