Ticket #3577: 0003-Fix-typo-in-error-message.patch

File 0003-Fix-typo-in-error-message.patch, 1.0 KB (added by ag, 8 years ago)
  • src/filemanager/file.c

    From 49d57a7b782e0f8a1fa8345a75261b017b2f92b9 Mon Sep 17 00:00:00 2001
    From: Andrey Gursky <andrey.gursky@e-mail.ua>
    Date: Sat, 19 Dec 2015 06:39:38 +0100
    Subject: [PATCH] Fix typo in error message
    
    Fixes typo in error message
    ---
     src/filemanager/file.c | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)
    
    diff --git a/src/filemanager/file.c b/src/filemanager/file.c
    index 10d1d00..2570cf2 100644
    a b copy_file_file (file_op_total_context_t * tctx, file_op_context_t * ctx, 
    18031803            else 
    18041804                while ((n_read = mc_read (src_desc, buf, sizeof (buf))) < 0 && !ctx->skip_all) 
    18051805                { 
    1806                     return_status = file_error (_("Cannot read source file\"%s\"\n%s"), src_path); 
     1806                    return_status = file_error (_("Cannot read source file \"%s\"\n%s"), src_path); 
    18071807                    if (return_status == FILE_RETRY) 
    18081808                        continue; 
    18091809                    if (return_status == FILE_SKIPALL)