summaryrefslogtreecommitdiffstats
path: root/plugins/check_snmp.c
diff options
context:
space:
mode:
authorKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-05-09 03:00:34 (GMT)
committerKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-05-09 03:00:34 (GMT)
commit3bae38aef895b93b29836c2f15c9dfd388562e11 (patch)
tree72d15521c75da67eb1f9335ad46cc029f8e8e25a /plugins/check_snmp.c
parent6882b543648b994a1707a96a9116ae52fe72b57a (diff)
downloadmonitoring-plugins-3bae38aef895b93b29836c2f15c9dfd388562e11.tar.gz
cause snmpget try try for 1 second less than the timeout (allowing plugin to force close if needed)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@501 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_snmp.c')
-rw-r--r--plugins/check_snmp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c
index 8715fb0..2aded73 100644
--- a/plugins/check_snmp.c
+++ b/plugins/check_snmp.c
@@ -233,8 +233,9 @@ main (int argc, char **argv)
233 usage ("Incorrect arguments supplied\n"); 233 usage ("Incorrect arguments supplied\n");
234 234
235 /* create the command line to execute */ 235 /* create the command line to execute */
236 asprintf (&command_line, "%s -m %s -v %s %s %s:%s %s", 236 asprintf (&command_line, "%s -t 1 -r %d -m %s -v %s %s %s:%s %s",
237 PATH_TO_SNMPGET, miblist, proto, authpriv, server_address, port, oid); 237 PATH_TO_SNMPGET, timeout_interval - 1, miblist, proto,
238 authpriv, server_address, port, oid);
238 if (verbose) 239 if (verbose)
239 printf ("%s\n", command_line); 240 printf ("%s\n", command_line);
240 241