projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
63f4242
)
snmp plugin: Don't print a warning if the ASN type is "ASN_NULL".
author
Florian Forster
<octo@noris.net>
Wed, 19 May 2010 09:47:45 +0000
(11:47 +0200)
committer
Florian Forster
<octo@noris.net>
Wed, 19 May 2010 09:47:45 +0000
(11:47 +0200)
Thanks to "Flyinvap" for pointing this out.
src/snmp.c
patch
|
blob
|
history
diff --git
a/src/snmp.c
b/src/snmp.c
index
fee2f6d
..
96a0971
100644
(file)
--- a/
src/snmp.c
+++ b/
src/snmp.c
@@
-752,6
+752,13
@@
static value_t csnmp_value_list_to_value (struct variable_list *vl, int type,
{
/* We'll handle this later.. */
}
+#ifdef ASN_NULL
+ else if (vl->type == ASN_NULL)
+ {
+ /* Don't print a warning. */
+ defined = 0;
+ }
+#endif
else
{
WARNING ("snmp plugin: I don't know the ASN type `%i'", (int) vl->type);