fix: Typo in unmarshal on Cmp struct (#14)
This commit is contained in:
parent
a975e10ef9
commit
07c974e364
|
@ -184,7 +184,7 @@ func (e *Cmp) unmarshal(data []byte) error {
|
||||||
e.Op = CmpOp(ad.Uint32())
|
e.Op = CmpOp(ad.Uint32())
|
||||||
case unix.NFTA_CMP_DATA:
|
case unix.NFTA_CMP_DATA:
|
||||||
ad.Do(func(b []byte) error {
|
ad.Do(func(b []byte) error {
|
||||||
ad, err := netlink.NewAttributeDecoder(data)
|
ad, err := netlink.NewAttributeDecoder(b)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue