diff options
Diffstat (limited to 'plugins/t')
0 files changed, 0 insertions, 0 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index cd50389..7c3bc4b 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c | |||
@@ -432,7 +432,7 @@ main (int argc, char **argv) | |||
432 | ptr = strpbrk (show, "0123456789"); | 432 | ptr = strpbrk (show, "0123456789"); |
433 | if (ptr == NULL) | 433 | if (ptr == NULL) |
434 | die (STATE_UNKNOWN,_("No valid data returned (%s)\n"), show); | 434 | die (STATE_UNKNOWN,_("No valid data returned (%s)\n"), show); |
435 | response_value[i] = strtod (ptr, NULL)+offset; | 435 | response_value[i] = strtod (ptr, NULL) + offset; |
436 | 436 | ||
437 | if(calculate_rate) { | 437 | if(calculate_rate) { |
438 | if (previous_state!=NULL) { | 438 | if (previous_state!=NULL) { |
@@ -1088,7 +1088,7 @@ print_help (void) | |||
1088 | printf (" %s\n", "--rate-multiplier"); | 1088 | printf (" %s\n", "--rate-multiplier"); |
1089 | printf (" %s\n", _("Converts rate per second. For example, set to 60 to convert to per minute")); | 1089 | printf (" %s\n", _("Converts rate per second. For example, set to 60 to convert to per minute")); |
1090 | printf (" %s\n", "--offset=OFFSET"); | 1090 | printf (" %s\n", "--offset=OFFSET"); |
1091 | printf (" %s\n", _("Allows to add/substract a value to numeric sensor data.")); | 1091 | printf (" %s\n", _("Add/substract the specified OFFSET to numeric sensor data")); |
1092 | 1092 | ||
1093 | /* Tests Against Strings */ | 1093 | /* Tests Against Strings */ |
1094 | printf (" %s\n", "-s, --string=STRING"); | 1094 | printf (" %s\n", "-s, --string=STRING"); |