Skip to content

Commit 4f954b5

Browse files
committed
netlink-packet-route: fix IPoIB umcast flag value
The value should be "3" instead of "4". Signed-off-by: Fernando Fernandez Mancera <ffmancera@riseup.net>
1 parent ec6bb45 commit 4f954b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rtnl/constants.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ pub const IFLA_IPVLAN_FLAGS: u16 = 2;
458458
pub const IFLA_IPOIB_UNSPEC: u16 = 0;
459459
pub const IFLA_IPOIB_PKEY: u16 = 1;
460460
pub const IFLA_IPOIB_MODE: u16 = 2;
461-
pub const IFLA_IPOIB_UMCAST: u16 = 4;
461+
pub const IFLA_IPOIB_UMCAST: u16 = 3;
462462
pub const VETH_INFO_UNSPEC: u16 = 0;
463463
pub const VETH_INFO_PEER: u16 = 1;
464464

0 commit comments

Comments
 (0)