You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
diff --git a/src/extract.c b/src/extract.c |
|
|
index 87b383a..340beea 100644 |
|
|
--- a/src/extract.c |
|
|
+++ b/src/extract.c |
|
|
@@ -1415,6 +1415,13 @@ extract_failure (char *file_name, int typeflag) |
|
|
return 1; |
|
|
} |
|
|
|
|
|
+static int |
|
|
+extract_skip (char *file_name, int typeflag) |
|
|
+{ |
|
|
+ skip_member (); |
|
|
+ return 0; |
|
|
+} |
|
|
+ |
|
|
typedef int (*tar_extractor_t) (char *file_name, int typeflag); |
|
|
|
|
|
|
|
|
@@ -1495,7 +1502,7 @@ prepare_to_extract (char const *file_name, int typeflag, tar_extractor_t *fun) |
|
|
ERROR ((0, 0, |
|
|
_("%s: Cannot extract -- file is continued from another volume"), |
|
|
quotearg_colon (current_stat_info.file_name))); |
|
|
- *fun = extract_failure; |
|
|
+ *fun = extract_skip; |
|
|
break; |
|
|
|
|
|
case GNUTYPE_LONGNAME:
|
|
|
|