
20 Jun
2008
20 Jun
'08
8:22 p.m.
Kaitlin Rupert wrote:
+# The branch has to be removed once the new rpm +# including the changes in revision 599 is available. +# The value of LinkTechnology should be set to 2 for +# network, bridge and ethernet type interfaces. +if net_rev > CIM_REV:
You'll want this to be net_rev >= CIM_REV because the change went in with changeset 599.
If we make this condition as net_rev >= CIM_REV, then for the case where net_rev == CIM_REV = 599 , the LinkTechnology_Ethernet = 0 instead of LinkTechnology_Ethernet = 2 which is not what is expected , correct ?