summaryrefslogtreecommitdiffstats
path: root/plugins/check_snmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_snmp.c')
-rw-r--r--plugins/check_snmp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c
index 03c2a17..3dc52df 100644
--- a/plugins/check_snmp.c
+++ b/plugins/check_snmp.c
@@ -106,7 +106,7 @@ char *authproto = NULL;
106char *privproto = NULL; 106char *privproto = NULL;
107char *authpasswd = NULL; 107char *authpasswd = NULL;
108char *privpasswd = NULL; 108char *privpasswd = NULL;
109char **oids = NULL; 109char **oids = NULL;
110char *label; 110char *label;
111char *units; 111char *units;
112char *port; 112char *port;
@@ -186,7 +186,7 @@ main (int argc, char **argv)
186 snmpcmd = strdup (PATH_TO_SNMPGETNEXT); 186 snmpcmd = strdup (PATH_TO_SNMPGETNEXT);
187 }else{ 187 }else{
188 snmpcmd = strdup (PATH_TO_SNMPGET); 188 snmpcmd = strdup (PATH_TO_SNMPGET);
189 } 189 }
190 190
191 /* 9 arguments to pass before authpriv options + 1 for host and numoids. Add one for terminating NULL */ 191 /* 9 arguments to pass before authpriv options + 1 for host and numoids. Add one for terminating NULL */
192 command_line = calloc (9 + numauthpriv + 1 + numoids + 1, sizeof (char *)); 192 command_line = calloc (9 + numauthpriv + 1 + numoids + 1, sizeof (char *));
@@ -224,10 +224,10 @@ main (int argc, char **argv)
224 /* Run the command */ 224 /* Run the command */
225 return_code = cmd_run_array (command_line, &chld_out, &chld_err, 0); 225 return_code = cmd_run_array (command_line, &chld_out, &chld_err, 0);
226 226
227 /* Due to net-snmp sometimes showing stderr messages with poorly formed MIBs, 227 /* Due to net-snmp sometimes showing stderr messages with poorly formed MIBs,
228 only return state unknown if return code is non zero or there is no stdout. 228 only return state unknown if return code is non zero or there is no stdout.
229 Do this way so that if there is stderr, will get added to output, which helps problem diagnosis 229 Do this way so that if there is stderr, will get added to output, which helps problem diagnosis
230 /* 230 */
231 if (return_code != 0) 231 if (return_code != 0)
232 external_error=1; 232 external_error=1;
233 if (chld_out.lines == 0) 233 if (chld_out.lines == 0)
@@ -252,7 +252,7 @@ main (int argc, char **argv)
252 252
253 for (i = 0; i < chld_out.lines; i++) { 253 for (i = 0; i < chld_out.lines; i++) {
254 ptr = chld_out.line[i]; 254 ptr = chld_out.line[i];
255 oidname = strpcpy (oidname, ptr, delimiter); 255 oidname = strpcpy (oidname, ptr, delimiter);
256 response = strstr (ptr, delimiter); 256 response = strstr (ptr, delimiter);
257 257
258 /* We strip out the datatype indicator for PHBs */ 258 /* We strip out the datatype indicator for PHBs */