From: Karl DeBisschop Date: Fri, 9 May 2003 03:00:34 +0000 (+0000) Subject: cause snmpget try try for 1 second less than the timeout (allowing plugin to force... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3bae38aef895b93b29836c2f15c9dfd388562e11;p=nagiosplug.git 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 --- 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) usage ("Incorrect arguments supplied\n"); /* create the command line to execute */ - asprintf (&command_line, "%s -m %s -v %s %s %s:%s %s", - PATH_TO_SNMPGET, miblist, proto, authpriv, server_address, port, oid); + asprintf (&command_line, "%s -t 1 -r %d -m %s -v %s %s %s:%s %s", + PATH_TO_SNMPGET, timeout_interval - 1, miblist, proto, + authpriv, server_address, port, oid); if (verbose) printf ("%s\n", command_line);