Skip to content

Commit

Permalink
Change ifa_flags type to u64 for Solaris/illumos
Browse files Browse the repository at this point in the history
(backport <rust-lang#3729>)
(cherry picked from commit efc67c9)
  • Loading branch information
mtelka authored and tgross35 committed Aug 13, 2024
1 parent 0bded09 commit ca7e96a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/solarish/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ s! {
pub struct ifaddrs {
pub ifa_next: *mut ifaddrs,
pub ifa_name: *mut ::c_char,
pub ifa_flags: ::c_ulong,
pub ifa_flags: u64,
pub ifa_addr: *mut ::sockaddr,
pub ifa_netmask: *mut ::sockaddr,
pub ifa_dstaddr: *mut ::sockaddr,
Expand Down

0 comments on commit ca7e96a

Please sign in to comment.