(purge_directory): Skip the member and return if the archive is not in incremental format.

This commit is contained in:
Sergey Poznyakoff
2005-12-01 12:51:20 +00:00
parent 5249a99377
commit ae00dc0d37

View File

@@ -681,6 +681,12 @@ purge_directory (char const *directory_name)
char *current_dir;
char *cur, *arc;
if (!current_stat_info.dumpdir)
{
skip_member ();
return;
}
current_dir = savedir (directory_name);
if (!current_dir)