From a95d6fda80b53c3125df8e5ebfda72905141fd82 Mon Sep 17 00:00:00 2001 From: David Malone Date: Tue, 11 Jul 2000 18:01:42 +0000 Subject: [PATCH] Use lstat(2) instead of stat(2) when deciding if we should fastcopy a file. This fixes moving symlinks across partitions. PR: 17847 Reviewed by: bde --- bin/mv/mv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mv/mv.c b/bin/mv/mv.c index 5f0f28b1882d..903ce7ba4675 100644 --- a/bin/mv/mv.c +++ b/bin/mv/mv.c @@ -221,7 +221,7 @@ do_move(from, to) * it's a regular file, do the copy internally; otherwise, use * cp and rm. */ - if (stat(from, &sb)) { + if (lstat(from, &sb)) { warn("%s", from); return (1); }