From 5a2814a21bff07b87a7589ef19b63c9eecb8be9f Mon Sep 17 00:00:00 2001 From: Thomas Guyot-Sionnest Date: Tue, 30 Nov 2010 22:48:43 -0500 Subject: Revert "check_snmp now considers strings returned by SNMP that contain just" This reverts commit 896962a1ad1b7d7c75d42c565b06cc799feb0a7c. Conflicts: NEWS plugins/tests/check_snmp.t Notes: Reverting because I rebased a patch that was doing the same thing, plus fixing more related regressions, and both didn't work together. I kept the tests intact except for one that wouldn't pass on 1.4.14 either --- plugins/check_snmp.c | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'plugins/check_snmp.c') diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index cb7fb7a0..d79da8cf 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c @@ -160,7 +160,6 @@ main (int argc, char **argv) char *outbuff; char *ptr = NULL; char *show = NULL; - char *endptr = NULL; char *th_warn=NULL; char *th_crit=NULL; char type[8] = ""; @@ -390,19 +389,6 @@ main (int argc, char **argv) } } - /* Allow numeric conversion if whole string is a number. Make concession for strings with " at beginning or end */ - /* This duplicates the conversion a bit later, but is cleaner to separate out the checking against the conversion */ - ptr = show; - if (*ptr == '"') - ptr++; - if (*ptr != '\0' ) { - strtod( ptr, &endptr ); - if (*endptr == '"') - endptr++; - if (*endptr == '\0') - is_numeric=1; - } - } else if (strstr (response, "Timeticks: ")) { show = strstr (response, "Timeticks: "); -- cgit v1.2.3-74-g34f1