From d9f3d89a07e0af2b46cab0aaed4a343f3b6c8c1a Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Sun, 19 Aug 2012 18:27:18 +0000 Subject: [PATCH] E: remove useless op we chmod the created symlink. It's useless, because we use stat() which gives st_mode of pointed file/folder, and then we use chmod(), which follows symlink; so we are chmoding a file to the same permissions it had before. Patch by Maxile Villard SVN revision: 75435 --- src/bin/e_fm_op.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bin/e_fm_op.c b/src/bin/e_fm_op.c index 3a625cfe0..291b8387b 100644 --- a/src/bin/e_fm_op.c +++ b/src/bin/e_fm_op.c @@ -1191,7 +1191,6 @@ _e_fm_op_copy_link(E_Fm_Op_Task *task) task->dst.done += task->src.st.st_size; _e_fm_op_update_progress(task, task->src.st.st_size, 0); - _e_fm_op_copy_stat_info(task); task->finished = 1;