diff options
author | Jim Meyering <jim@meyering.net> | 1998-11-30 02:57:43 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-11-30 02:57:43 +0000 |
commit | d9878753d133765b8d970abc626a7c9a4338d173 (patch) | |
tree | 34382cd53bb2f544ff4e03f506cc520874afad0d | |
parent | 4dbf57ed78177907470613e0861e825293935b33 (diff) | |
download | coreutils-d9878753d133765b8d970abc626a7c9a4338d173.tar.xz |
(do_copy): Rename local: s/unused/copy_into_self/
-rw-r--r-- | src/cp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -488,8 +488,8 @@ do_copy (int argc, char **argv, const struct cp_options *x) } else { - int unused; - ret |= copy (arg, dst_path, new_dst, x, &unused, NULL); + int copy_into_self; + ret |= copy (arg, dst_path, new_dst, x, ©_into_self, NULL); forget_all (); if (flag_path) |