summaryrefslogtreecommitdiffstats
path: root/plugins/check_mrtgtraf.c
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2008-11-08 16:33:15 (GMT)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2008-11-08 16:33:15 (GMT)
commit4e366f82dee33c2f9a2e781d77144b2cf76d7c51 (patch)
treef94f43282102fa89aa11a595ae03387d9c84d040 /plugins/check_mrtgtraf.c
parent4bdb362b6126803f86373ebf181925b86d85f0fc (diff)
downloadmonitoring-plugins-4e366f82dee33c2f9a2e781d77144b2cf76d7c51.tar.gz
Fix long options parsing in check_disk, check_dns, check_mrtg and check_mrtgtraf (check_tcp was done in an earlier commit)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2078 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_mrtgtraf.c')
-rw-r--r--plugins/check_mrtgtraf.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/check_mrtgtraf.c b/plugins/check_mrtgtraf.c
index b971616..1911d56 100644
--- a/plugins/check_mrtgtraf.c
+++ b/plugins/check_mrtgtraf.c
@@ -223,13 +223,11 @@ process_arguments (int argc, char **argv)
223 223
224 int option = 0; 224 int option = 0;
225 static struct option longopts[] = { 225 static struct option longopts[] = {
226 {"logfile", required_argument, 0, 'F'}, 226 {"filename", required_argument, 0, 'F'},
227 {"expires", required_argument, 0, 'e'}, 227 {"expires", required_argument, 0, 'e'},
228 {"aggregation", required_argument, 0, 'a'}, 228 {"aggregation", required_argument, 0, 'a'},
229 {"variable", required_argument, 0, 'v'},
230 {"critical", required_argument, 0, 'c'}, 229 {"critical", required_argument, 0, 'c'},
231 {"warning", required_argument, 0, 'w'}, 230 {"warning", required_argument, 0, 'w'},
232 {"verbose", no_argument, 0, 'v'},
233 {"version", no_argument, 0, 'V'}, 231 {"version", no_argument, 0, 'V'},
234 {"help", no_argument, 0, 'h'}, 232 {"help", no_argument, 0, 'h'},
235 {0, 0, 0, 0} 233 {0, 0, 0, 0}
@@ -385,6 +383,6 @@ void
385print_usage (void) 383print_usage (void)
386{ 384{
387 printf (_("Usage")); 385 printf (_("Usage"));
388 printf (" %s -F <log_file> -a <AVG | MAX> -v <variable> -w <warning_pair>",progname); 386 printf (" %s -F <log_file> -a <AVG | MAX> -w <warning_pair>\n",progname);
389 printf ("-c <critical_pair> [-e expire_minutes] [-t timeout] [-v]\n"); 387 printf ("-c <critical_pair> [-e expire_minutes]\n");
390} 388}