aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_snmp.c
diff options
context:
space:
mode:
authorGravatar Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> 2007-05-29 04:25:24 +0000
committerGravatar Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> 2007-05-29 04:25:24 +0000
commit757e1676f1cea81fdb2852febb6f312ea6a67bd3 (patch)
treed2828906ef7e57f19279a6098d6602da94b8e7af /plugins/check_snmp.c
parent1baf11d3af00e35a1540003232abd80ec92f4af0 (diff)
downloadmonitoring-plugins-757e1676f1cea81fdb2852febb6f312ea6a67bd3.tar.gz
change a bunch of whitespaces (no code was harmed)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1720 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_snmp.c')
-rw-r--r--plugins/check_snmp.c44
1 files changed, 22 insertions, 22 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c
index 741ad3ea..f8bba99e 100644
--- a/plugins/check_snmp.c
+++ b/plugins/check_snmp.c
@@ -184,13 +184,13 @@ main (int argc, char **argv)
/* create the command line to execute */
if(usesnmpgetnext == TRUE) {
asprintf(&command_line, "%s -t %d -r %d -m %s -v %s %s %s:%s %s",
- PATH_TO_SNMPGETNEXT, timeout_interval, retries, miblist, proto,
- authpriv, server_address, port, oid);
+ PATH_TO_SNMPGETNEXT, timeout_interval, retries, miblist, proto,
+ authpriv, server_address, port, oid);
}else{
asprintf (&command_line, "%s -t %d -r %d -m %s -v %s %s %s:%s %s",
- PATH_TO_SNMPGET, timeout_interval, retries, miblist, proto,
- authpriv, server_address, port, oid);
+ PATH_TO_SNMPGET, timeout_interval, retries, miblist, proto,
+ authpriv, server_address, port, oid);
}
if (verbose)
@@ -343,11 +343,11 @@ main (int argc, char **argv)
/* Prepend a label for this OID if there is one */
if (nlabels > (size_t)1 && (size_t)i < nlabels && labels[i] != NULL)
asprintf (&outbuff, "%s%s%s %s%s%s", outbuff,
- (i == 0) ? " " : output_delim,
- labels[i], mark (iresult), show, mark (iresult));
+ (i == 0) ? " " : output_delim,
+ labels[i], mark (iresult), show, mark (iresult));
else
asprintf (&outbuff, "%s%s%s%s%s", outbuff, (i == 0) ? " " : output_delim,
- mark (iresult), show, mark (iresult));
+ mark (iresult), show, mark (iresult));
/* Append a unit string for this OID if there is one */
if (nunits > (size_t)0 && (size_t)i < nunits && unitv[i] != NULL)
@@ -365,9 +365,9 @@ main (int argc, char **argv)
if (found == 0)
die (STATE_UNKNOWN,
- _("%s problem - No data received from host\nCMD: %s\n"),
- label,
- command_line);
+ _("%s problem - No data received from host\nCMD: %s\n"),
+ label,
+ command_line);
/* WARNING if output found on stderr */
if (fgets (input_buffer, MAX_INPUT_BUFFER - 1, child_stderr))
@@ -466,31 +466,31 @@ process_arguments (int argc, char **argv)
case 'H': /* Host or server */
server_address = optarg;
break;
- case 'p': /* TCP port number */
+ case 'p': /* TCP port number */
port = optarg;
break;
- case 'm': /* List of MIBS */
+ case 'm': /* List of MIBS */
miblist = optarg;
break;
- case 'n': /* usesnmpgetnext */
+ case 'n': /* usesnmpgetnext */
usesnmpgetnext = TRUE;
break;
- case 'P': /* SNMP protocol version */
+ case 'P': /* SNMP protocol version */
proto = optarg;
break;
- case 'L': /* security level */
+ case 'L': /* security level */
seclevel = optarg;
break;
- case 'U': /* security username */
+ case 'U': /* security username */
secname = optarg;
break;
- case 'a': /* auth protocol */
+ case 'a': /* auth protocol */
authproto = optarg;
break;
- case 'A': /* auth passwd */
+ case 'A': /* auth passwd */
authpasswd = optarg;
break;
- case 'X': /* priv passwd */
+ case 'X': /* priv passwd */
privpasswd = optarg;
break;
case 't': /* timeout period */
@@ -701,14 +701,14 @@ validate_arguments ()
- if (proto == NULL || (strcmp(proto,DEFAULT_PROTOCOL) == 0) ) { /* default protocol version */
+ if (proto == NULL || (strcmp(proto,DEFAULT_PROTOCOL) == 0) ) { /* default protocol version */
asprintf(&proto, DEFAULT_PROTOCOL);
asprintf(&authpriv, "%s%s", "-c ", community);
}
- else if ( strcmp (proto, "2c") == 0 ) { /* snmpv2c args */
+ else if ( strcmp (proto, "2c") == 0 ) { /* snmpv2c args */
asprintf(&authpriv, "%s%s", "-c ", community);
}
- else if ( strcmp (proto, "3") == 0 ) { /* snmpv3 args */
+ else if ( strcmp (proto, "3") == 0 ) { /* snmpv3 args */
asprintf(&proto, "%s", "3");
if ( (strcmp(seclevel, "noAuthNoPriv") == 0) || seclevel == NULL ) {