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
This commit is contained in:
Vincent Torri 2012-08-19 18:27:18 +00:00
parent d1577525fa
commit d9f3d89a07
1 changed files with 0 additions and 1 deletions

View File

@ -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;