projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f09a6b
)
madwifi plugin: Rename the antenna stats.
author
Florian Forster
<octo@huhu.verplant.org>
Sun, 16 Aug 2009 07:27:44 +0000
(09:27 +0200)
committer
Florian Forster
<octo@huhu.verplant.org>
Sun, 16 Aug 2009 07:27:44 +0000
(09:27 +0200)
The first part of the type instance is already something like `ast_ant_rx' -
using `antenna%i' as the second part is therefore redundant. Thanks to Ondrej
for the pointer.
src/madwifi.c
patch
|
blob
|
history
diff --git
a/src/madwifi.c
b/src/madwifi.c
index
e46420c
..
536bcd4
100644
(file)
--- a/
src/madwifi.c
+++ b/
src/madwifi.c
@@
-597,7
+597,7
@@
static void submit_antx (const char *dev, const char *name,
if (vals[i] == 0)
continue;
- ssnprintf (ti2, sizeof (ti2), "
antenna
%i", i);
+ ssnprintf (ti2, sizeof (ti2), "%i", i);
submit_counter (dev, "ath_stat", name, ti2,
(counter_t) vals[i]);
}