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/rpm2cpio.c

    r3232 r3621  
    77 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
    88 */
     9
     10//config:config RPM2CPIO
     11//config:   bool "rpm2cpio"
     12//config:   default y
     13//config:   help
     14//config:     Converts a RPM file into a CPIO archive.
     15
     16//applet:IF_RPM2CPIO(APPLET(rpm2cpio, BB_DIR_USR_BIN, BB_SUID_DROP))
     17//kbuild:lib-$(CONFIG_RPM2CPIO) += rpm2cpio.o
    918
    1019//usage:#define rpm2cpio_trivial_usage
     
    7281
    7382    /* This works, but doesn't report uncompress errors (they happen in child) */
    74     setup_unzip_on_fd(rpm_fd, /*fail_if_not_detected:*/ 1);
     83    setup_unzip_on_fd(rpm_fd, /*fail_if_not_compressed:*/ 1);
    7584    if (bb_copyfd_eof(rpm_fd, STDOUT_FILENO) < 0)
    7685        bb_error_msg_and_die("error unpacking");
Note: See TracChangeset for help on using the changeset viewer.