src/filemanager/file.c: (copy_file_file) fix typo in the error message

Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
This commit is contained in:
Andrey Gursky 2015-12-19 06:39:38 +01:00 committed by Yury V. Zaytsev
parent 5f63997891
commit 47830e09b4

View File

@ -1803,7 +1803,7 @@ copy_file_file (file_op_total_context_t * tctx, file_op_context_t * ctx,
else else
while ((n_read = mc_read (src_desc, buf, sizeof (buf))) < 0 && !ctx->skip_all) while ((n_read = mc_read (src_desc, buf, sizeof (buf))) < 0 && !ctx->skip_all)
{ {
return_status = file_error (_("Cannot read source file\"%s\"\n%s"), src_path); return_status = file_error (_("Cannot read source file \"%s\"\n%s"), src_path);
if (return_status == FILE_RETRY) if (return_status == FILE_RETRY)
continue; continue;
if (return_status == FILE_SKIPALL) if (return_status == FILE_SKIPALL)