diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_snmp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index 9096cda..bb3d295 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c | |||
@@ -207,7 +207,7 @@ main (int argc, char **argv) | |||
207 | 207 | ||
208 | /* This is just for display purposes, so it can remain a string */ | 208 | /* This is just for display purposes, so it can remain a string */ |
209 | asprintf(&cl_hidden_auth, "%s -t %d -r %d -m %s -v %s %s %s:%s", | 209 | asprintf(&cl_hidden_auth, "%s -t %d -r %d -m %s -v %s %s %s:%s", |
210 | snmpcmd, timeout_interval, retries, miblist, proto, "[authpriv]", | 210 | snmpcmd, timeout_interval, retries, strlen(miblist) ? miblist : "''", proto, "[authpriv]", |
211 | server_address, port); | 211 | server_address, port); |
212 | 212 | ||
213 | for (i = 0; i < numoids; i++) { | 213 | for (i = 0; i < numoids; i++) { |
@@ -256,7 +256,7 @@ main (int argc, char **argv) | |||
256 | oidname = strpcpy (oidname, ptr, delimiter); | 256 | oidname = strpcpy (oidname, ptr, delimiter); |
257 | response = strstr (ptr, delimiter); | 257 | response = strstr (ptr, delimiter); |
258 | if (verbose > 2) { | 258 | if (verbose > 2) { |
259 | printf("Processing line %i\n line: %s\n oidname: %s\n response: %s\n", i+1, ptr, oidname, response); | 259 | printf("Processing line %i\n oidname: %s\n response: %s\n", i+1, oidname, response); |
260 | } | 260 | } |
261 | 261 | ||
262 | /* We strip out the datatype indicator for PHBs */ | 262 | /* We strip out the datatype indicator for PHBs */ |
@@ -647,7 +647,7 @@ validate_arguments () | |||
647 | if ( needmibs == TRUE ) { | 647 | if ( needmibs == TRUE ) { |
648 | miblist = strdup (DEFAULT_MIBLIST); | 648 | miblist = strdup (DEFAULT_MIBLIST); |
649 | }else{ | 649 | }else{ |
650 | miblist = "''"; /* don't read any mib files for numeric oids */ | 650 | miblist = ""; /* don't read any mib files for numeric oids */ |
651 | } | 651 | } |
652 | } | 652 | } |
653 | 653 | ||