diff options
author | luozijun <gnulinux@126.com> | 2017-11-09 17:10:59 +0800 |
---|---|---|
committer | luozijun <gnulinux@126.com> | 2017-11-09 17:10:59 +0800 |
commit | 165bbc36dfecade6cb46ae8b8c3ca1613a65f64c (patch) | |
tree | 0c4cdc957929f150ff7eadf3fd37fbac87b0f8dd /src/unix/uclibc/mod.rs | |
parent | 1c87180bf1cf84d6ddc97eb1dd6637a851248c13 (diff) | |
download | rust-libc-165bbc36dfecade6cb46ae8b8c3ca1613a65f64c.tar.gz |
FIX: line longer than 80 chars
Diffstat (limited to 'src/unix/uclibc/mod.rs')
-rw-r--r-- | src/unix/uclibc/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/unix/uclibc/mod.rs b/src/unix/uclibc/mod.rs index b9d406046b..df5ea71e8e 100644 --- a/src/unix/uclibc/mod.rs +++ b/src/unix/uclibc/mod.rs @@ -670,7 +670,8 @@ pub const IFF_SLAVE: ::c_int = 0x800; // Slave of a load balancer. pub const IFF_MULTICAST: ::c_int = 0x1000; // Supports multicast. pub const IFF_PORTSEL: ::c_int = 0x2000; // Can set media type. pub const IFF_AUTOMEDIA: ::c_int = 0x4000; // Auto media select active. -pub const IFF_DYNAMIC: ::c_int = 0x8000; // Dialup device with changing addresses. +// Dialup device with changing addresses. +pub const IFF_DYNAMIC: ::c_int = 0x8000; pub const SOL_IP: ::c_int = 0; pub const SOL_TCP: ::c_int = 6; |