From 1796626d9e7a4df3705ef83dbf278d248756692b Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 14 Oct 2014 11:40:03 -0500 Subject: Fix last night's mv commit (use dest, not source). --- toys/posix/cp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toys/posix/cp.c') diff --git a/toys/posix/cp.c b/toys/posix/cp.c index a30671f8..07a8f05b 100644 --- a/toys/posix/cp.c +++ b/toys/posix/cp.c @@ -319,10 +319,10 @@ void cp_main(void) // Technically "is writeable" is more complicated (022 is not writeable // by the owner, just everybody _else_) but I don't care. - if (!stat(src, &st) + if (!stat(TT.destname, &st) && ((toys.optflags & FLAG_i) || !(st.st_mode & 0222))) { - fprintf(stderr, "%s: overwrite '%s'", toys.which->name, src); + fprintf(stderr, "%s: overwrite '%s'", toys.which->name, TT.destname); if (!yesno("", 1)) rc = 0; else unlink(src); } -- cgit v1.2.3