From 0868b5794a6d6579509b4a8e5305328ccb4400ce Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 23 May 1999 14:52:32 +0000 Subject: (copy_internal): Make it so `mv -f FILE FILE' does not remove FILE. Based on a patch from Chris Yeo. --- src/copy.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/copy.c b/src/copy.c index fe68d49f4..9246aa07e 100644 --- a/src/copy.c +++ b/src/copy.c @@ -568,6 +568,13 @@ copy_internal (const char *src_path, const char *dst_path, } else { + if (SAME_INODE (src_sb, dst_sb)) + { + error (0, 0, _("`%s' and `%s' are the same file"), + src_path, dst_path); + return 1; + } + if (unlink (dst_path) && errno != ENOENT) { error (0, errno, _("cannot remove old link to `%s'"), -- cgit v1.2.3-70-g09d2