]> Dogcows Code - chaz/tar/blobdiff - src/update.c
Fix handling of files removed during incremental dumps.
[chaz/tar] / src / update.c
index fa161935aee190e20a34b29d4e9d9dd0c54f6a56..ade42830f1395798c2fb94fba992a221fe806a85 100644 (file)
@@ -189,10 +189,10 @@ update_archive (void)
   output_start = current_block->buffer;
 
   {
-    char *file_name;
-
-    while ((file_name = name_from_list ()) != NULL)
+    struct name const *p;
+    while ((p = name_from_list ()) != NULL)
       {
+       char *file_name = p->name;
        if (excluded_name (file_name))
          continue;
        if (interactive_option && !confirm ("add", file_name))
This page took 0.021549 seconds and 4 git commands to generate.