Changeset 3621 in MondoRescue for branches/3.3/mindi-busybox/libbb/udp_io.c


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/libbb/udp_io.c

    r3232 r3621  
    1717{
    1818#ifdef IP_PKTINFO
    19     setsockopt(fd, IPPROTO_IP, IP_PKTINFO, &const_int_1, sizeof(int));
     19    setsockopt_1(fd, IPPROTO_IP, IP_PKTINFO);
    2020#endif
    2121#if ENABLE_FEATURE_IPV6 && defined(IPV6_PKTINFO)
    22     setsockopt(fd, IPPROTO_IPV6, IPV6_PKTINFO, &const_int_1, sizeof(int));
     22    setsockopt_1(fd, IPPROTO_IPV6, IPV6_PKTINFO);
    2323#endif
    2424}
Note: See TracChangeset for help on using the changeset viewer.