Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/coreutils/libcoreutils/getopt_mk_fifo_nod.c

    r1765 r2725  
    2424#include "coreutils.h"
    2525
    26 mode_t getopt_mk_fifo_nod(int argc, char **argv)
     26mode_t FAST_FUNC getopt_mk_fifo_nod(char **argv)
    2727{
    2828    mode_t mode = 0666;
     
    3232#endif
    3333    int opt;
    34     opt = getopt32(argv, "m:" USE_SELINUX("Z:"), &smode USE_SELINUX(,&scontext));
     34    opt = getopt32(argv, "m:" IF_SELINUX("Z:"), &smode IF_SELINUX(,&scontext));
    3535    if (opt & 1) {
    3636        if (bb_parse_mode(smode, &mode))
Note: See TracChangeset for help on using the changeset viewer.