summaryrefslogtreecommitdiffstats
path: root/plugins/negate.c
diff options
context:
space:
mode:
authorKarl DeBisschop <kdebisschop@users.sourceforge.net>2002-11-09 03:39:35 (GMT)
committerKarl DeBisschop <kdebisschop@users.sourceforge.net>2002-11-09 03:39:35 (GMT)
commit731426203c88b76255492ad69138e6ecc7b0c7b5 (patch)
tree5e3c65a22a5a5d051ca72f5e17a73784e6032041 /plugins/negate.c
parentd3af657e468065dcbae73e6a7289f7090822bacd (diff)
downloadmonitoring-plugins-731426203c88b76255492ad69138e6ecc7b0c7b5.tar.gz
define and use usage3 where second part of message is a an int/char
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@178 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/negate.c')
-rw-r--r--plugins/negate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/negate.c b/plugins/negate.c
index a11558d..c76f5ca 100644
--- a/plugins/negate.c
+++ b/plugins/negate.c
@@ -234,17 +234,17 @@ process_arguments (int argc, char **argv)
234 234
235 while (1) { 235 while (1) {
236#ifdef HAVE_GETOPT_H 236#ifdef HAVE_GETOPT_H
237 c = getopt_long (argc, argv, "+?hVt:", 237 c = getopt_long (argc, argv, "hVt:",
238 long_options, &option_index); 238 long_options, &option_index);
239#else 239#else
240 c = getopt (argc, argv, "+?hVt:"); 240 c = getopt (argc, argv, "hVt:");
241#endif 241#endif
242 if (c == -1 || c == EOF) 242 if (c == -1 || c == EOF)
243 break; 243 break;
244 244
245 switch (c) { 245 switch (c) {
246 case '?': /* help */ 246 case '?': /* help */
247 usage2 ("Unknown argument", optarg); 247 usage3 ("Unknown argument", optopt);
248 case 'h': /* help */ 248 case 'h': /* help */
249 print_help (); 249 print_help ();
250 exit (EXIT_SUCCESS); 250 exit (EXIT_SUCCESS);