diff options
Diffstat (limited to 'plugins/check_snmp.c')
| -rw-r--r-- | plugins/check_snmp.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index da9638c4..afc568b2 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c | |||
| @@ -576,6 +576,9 @@ main (int argc, char **argv) | |||
| 576 | len = sizeof(perfstr)-strlen(perfstr)-1; | 576 | len = sizeof(perfstr)-strlen(perfstr)-1; |
| 577 | strncat(perfstr, show, len>ptr-show ? ptr-show : len); | 577 | strncat(perfstr, show, len>ptr-show ? ptr-show : len); |
| 578 | 578 | ||
| 579 | if (type) | ||
| 580 | strncat(perfstr, type, sizeof(perfstr)-strlen(perfstr)-1); | ||
| 581 | |||
| 579 | if (warning_thresholds) { | 582 | if (warning_thresholds) { |
| 580 | strncat(perfstr, ";", sizeof(perfstr)-strlen(perfstr)-1); | 583 | strncat(perfstr, ";", sizeof(perfstr)-strlen(perfstr)-1); |
| 581 | strncat(perfstr, warning_thresholds, sizeof(perfstr)-strlen(perfstr)-1); | 584 | strncat(perfstr, warning_thresholds, sizeof(perfstr)-strlen(perfstr)-1); |
| @@ -588,8 +591,6 @@ main (int argc, char **argv) | |||
| 588 | strncat(perfstr, critical_thresholds, sizeof(perfstr)-strlen(perfstr)-1); | 591 | strncat(perfstr, critical_thresholds, sizeof(perfstr)-strlen(perfstr)-1); |
| 589 | } | 592 | } |
| 590 | 593 | ||
| 591 | if (type) | ||
| 592 | strncat(perfstr, type, sizeof(perfstr)-strlen(perfstr)-1); | ||
| 593 | strncat(perfstr, " ", sizeof(perfstr)-strlen(perfstr)-1); | 594 | strncat(perfstr, " ", sizeof(perfstr)-strlen(perfstr)-1); |
| 594 | } | 595 | } |
| 595 | } | 596 | } |
| @@ -1207,8 +1208,9 @@ print_help (void) | |||
| 1207 | printf (" %s\n", _("Separates output on multiple OID requests")); | 1208 | printf (" %s\n", _("Separates output on multiple OID requests")); |
| 1208 | 1209 | ||
| 1209 | printf (UT_CONN_TIMEOUT, DEFAULT_SOCKET_TIMEOUT); | 1210 | printf (UT_CONN_TIMEOUT, DEFAULT_SOCKET_TIMEOUT); |
| 1211 | printf (" %s\n", _("NOTE the final timeout value is calculated using this formula: timeout_interval * retries + 5")); | ||
| 1210 | printf (" %s\n", "-e, --retries=INTEGER"); | 1212 | printf (" %s\n", "-e, --retries=INTEGER"); |
| 1211 | printf (" %s\n", _("Number of retries to be used in the requests")); | 1213 | printf (" %s%i\n", _("Number of retries to be used in the requests, default: "), DEFAULT_RETRIES); |
| 1212 | 1214 | ||
| 1213 | printf (" %s\n", "-O, --perf-oids"); | 1215 | printf (" %s\n", "-O, --perf-oids"); |
| 1214 | printf (" %s\n", _("Label performance data with OIDs instead of --label's")); | 1216 | printf (" %s\n", _("Label performance data with OIDs instead of --label's")); |
