projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ba48e6
)
netlink plugin: Yet another fix. `if_dropped' was getting bytes..
author
Florian Forster
<octo@huhu.verplant.org>
Fri, 31 Aug 2007 08:42:01 +0000
(10:42 +0200)
committer
Florian Forster
<octo@huhu.verplant.org>
Fri, 31 Aug 2007 08:42:01 +0000
(10:42 +0200)
src/netlink.c
patch
|
blob
|
history
diff --git
a/src/netlink.c
b/src/netlink.c
index
3c8a1fc
..
1a053d2
100644
(file)
--- a/
src/netlink.c
+++ b/
src/netlink.c
@@
-233,7
+233,7
@@
static int link_filter (const struct sockaddr_nl *sa, struct nlmsghdr *nmh,
if (check_ignorelist (dev, "if_detail", NULL) == 0)
{
- submit_two (dev, "if_dropped", NULL, stats->rx_
bytes, stats->tx_bytes
);
+ submit_two (dev, "if_dropped", NULL, stats->rx_
dropped, stats->tx_dropped
);
submit_one (dev, "if_multicast", NULL, stats->multicast);
submit_one (dev, "if_collisions", NULL, stats->collisions);