diff options
author | Sven Nierlein <sven@nierlein.de> | 2016-11-08 00:23:28 +0100 |
---|---|---|
committer | Sven Nierlein <sven@nierlein.de> | 2016-11-08 00:23:28 +0100 |
commit | d9999194e6a801f9b8fecc7f5faa109f59b10648 (patch) | |
tree | e571020dd275637cc15723e3cd00c121260a1908 | |
parent | 57a685836894eadc6d37ccbe5a60d2740685dbe5 (diff) | |
download | monitoring-plugins-d9999194e6a801f9b8fecc7f5faa109f59b10648.tar.gz |
Revert "check_snmp: fix push request 1173 for SNMP responses without datatype indicator"
This reverts commit 3178c8c0ff18822a04fe01c749f3564887473eed.
-rw-r--r-- | plugins/check_snmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index 51cdc781..da9638c4 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c @@ -461,7 +461,7 @@ main (int argc, char **argv) show = strstr (response, "Timeticks: "); } else - show = response; + show = response + 3; iresult = STATE_DEPENDENT; |