Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/archival/libarchive/filter_accept_list_reassign.c

    r3232 r3621  
    2929
    3030        /* Modify the subarchive handler based on the extension */
     31        if (strcmp(name_ptr, "tar") == 0) {
     32            archive_handle->dpkg__action_data_subarchive = get_header_tar;
     33            return EXIT_SUCCESS;
     34        }
    3135        if (ENABLE_FEATURE_SEAMLESS_GZ
    3236         && strcmp(name_ptr, "gz") == 0
     
    4751            return EXIT_SUCCESS;
    4852        }
     53        if (ENABLE_FEATURE_SEAMLESS_XZ
     54         && strcmp(name_ptr, "xz") == 0
     55        ) {
     56            archive_handle->dpkg__action_data_subarchive = get_header_tar_xz;
     57            return EXIT_SUCCESS;
     58        }
    4959    }
    5060    return EXIT_FAILURE;
Note: See TracChangeset for help on using the changeset viewer.