fix ifstat->rx_frame

This commit is contained in:
Doug MacEachern 2005-05-14 00:02:33 +00:00
parent b612a36f13
commit 713e955063
1 changed files with 1 additions and 1 deletions

View File

@ -1744,7 +1744,7 @@ sigar_net_interface_stat_get(sigar_t *sigar, const char *name,
ifstat->rx_errors = ifr->dwInErrors;
ifstat->rx_dropped = ifr->dwInDiscards;
ifstat->rx_overruns = SIGAR_FIELD_NOTIMPL;
ifstat->rx_frame =
ifstat->rx_frame = SIGAR_FIELD_NOTIMPL;
ifstat->tx_bytes = ifr->dwOutOctets;
ifstat->tx_packets = ifr->dwOutUcastPkts + ifr->dwOutNUcastPkts;