summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/check_snmp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c
index b005984..83083a8 100644
--- a/plugins/check_snmp.c
+++ b/plugins/check_snmp.c
@@ -297,6 +297,8 @@ main (int argc, char **argv)
297 show = strstr (response, "Gauge: ") + 7; 297 show = strstr (response, "Gauge: ") + 7;
298 else if (strstr (response, "Gauge32: ")) 298 else if (strstr (response, "Gauge32: "))
299 show = strstr (response, "Gauge32: ") + 9; 299 show = strstr (response, "Gauge32: ") + 9;
300 else if (strstr (response, "Counter32: "))
301 show = strstr (response, "Counter32: ") + 11;
300 else if (strstr (response, "INTEGER: ")) 302 else if (strstr (response, "INTEGER: "))
301 show = strstr (response, "INTEGER: ") + 9; 303 show = strstr (response, "INTEGER: ") + 9;
302 else 304 else