]> Dogcows Code - chaz/tar/commitdiff
Minor fixes to text messages. Proposed by Benno Schulenberg.
authorSergey Poznyakoff <gray@gnu.org.ua>
Thu, 7 Apr 2005 17:25:29 +0000 (17:25 +0000)
committerSergey Poznyakoff <gray@gnu.org.ua>
Thu, 7 Apr 2005 17:25:29 +0000 (17:25 +0000)
(extract_file): Assign orig_file_name
        to save_name uniformly over the program. This fixes matching
        directory names at the start of an archive volume.

src/extract.c

index e8f8f1fcd17976982c6979fdb6f612a910a0c3f3..2247de9b206106b24d610ca3281b19382d34137f 100644 (file)
@@ -713,7 +713,7 @@ extract_file (char *file_name, int typeflag)
       {
        if (multi_volume_option)
          {
-           assign_string (&save_name, current_stat_info.file_name);
+           assign_string (&save_name, current_stat_info.orig_file_name);
            save_totsize = current_stat_info.stat.st_size;
            save_sizeleft = size;
          }
@@ -1072,7 +1072,7 @@ prepare_to_extract (char const *file_name, int typeflag, tar_extractor_t *fun)
 
     default:
       WARN ((0, 0,
-            _("%s: Unknown file type '%c', extracted as normal file"),
+            _("%s: Unknown file type `%c', extracted as normal file"),
             quotearg_colon (file_name), typeflag));
       *fun = extract_file;
     }
This page took 0.026363 seconds and 4 git commands to generate.