From 7339539ac5bf70b53a7f0e7db060f52e754be76a Mon Sep 17 00:00:00 2001 From: dwmalone Date: Tue, 11 Jul 2000 18:01:42 +0000 Subject: 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 5f0f28b..903ce7b 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); } -- cgit v1.1