platform: fix nm_platform_lnk_macvlan_cmp() to consider "tap" field

This commit is contained in:
Thomas Haller 2017-06-27 19:42:44 +02:00
parent 26f04fd886
commit b002357f5f

View file

@ -4236,7 +4236,8 @@ nm_platform_lnk_macvlan_cmp (const NMPlatformLnkMacvlan *a, const NMPlatformLnkM
{
_CMP_SELF (a, b);
_CMP_FIELD (a, b, mode);
_CMP_FIELD_BOOL (a, b, no_promisc);
_CMP_FIELD (a, b, no_promisc);
_CMP_FIELD (a, b, tap);
return 0;
}