Deleted Added
full compact
466c466
< value->v.counter64 = ifp->hc_inoctets;
---
> value->v.counter64 = MIBIF_PRIV(ifp)->hc_inoctets;
472c472,473
< value->v.counter64 = ifp->hc_ipackets - ifp->hc_imcasts;
---
> value->v.counter64 = MIBIF_PRIV(ifp)->hc_ipackets -
> MIBIF_PRIV(ifp)->hc_imcasts;
478c479
< value->v.counter64 = ifp->hc_imcasts;
---
> value->v.counter64 = MIBIF_PRIV(ifp)->hc_imcasts;
490c491
< value->v.counter64 = ifp->hc_outoctets;
---
> value->v.counter64 = MIBIF_PRIV(ifp)->hc_outoctets;
496c497,498
< value->v.counter64 = ifp->hc_opackets - ifp->hc_omcasts;
---
> value->v.counter64 = MIBIF_PRIV(ifp)->hc_opackets -
> MIBIF_PRIV(ifp)->hc_omcasts;
502c504
< value->v.counter64 = ifp->hc_omcasts;
---
> value->v.counter64 = MIBIF_PRIV(ifp)->hc_omcasts;