diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_snmp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index d9e0078..c43f1ef 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c | |||
@@ -527,11 +527,11 @@ process_arguments (int argc, char **argv) | |||
527 | retries = atoi(optarg); | 527 | retries = atoi(optarg); |
528 | break; | 528 | break; |
529 | case 'o': /* object identifier */ | 529 | case 'o': /* object identifier */ |
530 | if ( strspn( optarg, "0123456789." ) != strlen( optarg ) ) { | 530 | if ( strspn( optarg, "0123456789.," ) != strlen( optarg ) ) { |
531 | /* | 531 | /* |
532 | * we have something other than digits and periods, so we | 532 | * we have something other than digits, periods and comas, |
533 | * have a mib variable, rather than just an SNMP OID, so | 533 | * so we have a mib variable, rather than just an SNMP OID, |
534 | * we have to actually read the mib files | 534 | * so we have to actually read the mib files |
535 | */ | 535 | */ |
536 | needmibs = TRUE; | 536 | needmibs = TRUE; |
537 | } | 537 | } |