aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_snmp.c
diff options
context:
space:
mode:
authorGravatar Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> 2007-02-02 09:10:22 +0000
committerGravatar Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> 2007-02-02 09:10:22 +0000
commit0dbab53464230a2121bb92cee33fe9c81f8aa071 (patch)
treebee727dbd30d55a97418ef812ee6fa75f5eac0e5 /plugins/check_snmp.c
parentb0307d7a99c56b2d77bc80f7f931e7016b9d4e39 (diff)
downloadmonitoring-plugins-0dbab53464230a2121bb92cee33fe9c81f8aa071.tar.gz
Fix parsing of multiple OIDs sets needmibs = TRUE
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1605 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_snmp.c')
-rw-r--r--plugins/check_snmp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c
index d9e00782..c43f1efb 100644
--- a/plugins/check_snmp.c
+++ b/plugins/check_snmp.c
@@ -527,11 +527,11 @@ process_arguments (int argc, char **argv)
retries = atoi(optarg);
break;
case 'o': /* object identifier */
- if ( strspn( optarg, "0123456789." ) != strlen( optarg ) ) {
+ if ( strspn( optarg, "0123456789.," ) != strlen( optarg ) ) {
/*
- * we have something other than digits and periods, so we
- * have a mib variable, rather than just an SNMP OID, so
- * we have to actually read the mib files
+ * we have something other than digits, periods and comas,
+ * so we have a mib variable, rather than just an SNMP OID,
+ * so we have to actually read the mib files
*/
needmibs = TRUE;
}