summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3a04e39)
raw | patch | inline | side by side (parent: 3a04e39)
author | Subhendu Ghosh <sghosh@users.sourceforge.net> | |
Fri, 17 Jan 2003 05:37:22 +0000 (05:37 +0000) | ||
committer | Subhendu Ghosh <sghosh@users.sourceforge.net> | |
Fri, 17 Jan 2003 05:37:22 +0000 (05:37 +0000) |
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@250 f882894a-f735-0410-b71e-b25c423dba1c
plugins/check_snmp.c | patch | blob | history |
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c
index b0059845358cbd19755a208462e16828759aadf9..83083a850f93c909ac1b3b52a8904a4b3235f354 100644 (file)
--- a/plugins/check_snmp.c
+++ b/plugins/check_snmp.c
show = strstr (response, "Gauge: ") + 7;
else if (strstr (response, "Gauge32: "))
show = strstr (response, "Gauge32: ") + 9;
+ else if (strstr (response, "Counter32: "))
+ show = strstr (response, "Counter32: ") + 11;
else if (strstr (response, "INTEGER: "))
show = strstr (response, "INTEGER: ") + 9;
else