summaryrefslogtreecommitdiffstats
path: root/plugins/check_mrtg.c
diff options
context:
space:
mode:
authorKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-01-13 12:15:16 (GMT)
committerKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-01-13 12:15:16 (GMT)
commit0c3386274ef5002dffc20337ef02407f24d7400c (patch)
tree1e78bac7844a548e56a642b35acfe1fd67342f71 /plugins/check_mrtg.c
parentde5650f28e4e43a7264913953f95a75d8afe23f0 (diff)
downloadmonitoring-plugins-0c3386274ef5002dffc20337ef02407f24d7400c.tar.gz
convert PROGANE from a define to a const char
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@238 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_mrtg.c')
-rw-r--r--plugins/check_mrtg.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/check_mrtg.c b/plugins/check_mrtg.c
index 80c9b00..e26e2e6 100644
--- a/plugins/check_mrtg.c
+++ b/plugins/check_mrtg.c
@@ -23,7 +23,7 @@
23 * 23 *
24 *****************************************************************************/ 24 *****************************************************************************/
25 25
26#define PROGNAME "check_mrtg" 26const char *progname = "check_mrtg";
27#define REVISION "$Revision$" 27#define REVISION "$Revision$"
28#define COPYRIGHT "Copyright (c) 1999-2001 Ethan Galstad" 28#define COPYRIGHT "Copyright (c) 1999-2001 Ethan Galstad"
29 29
@@ -287,7 +287,7 @@ process_arguments (int argc, char **argv)
287 units_label = optarg; 287 units_label = optarg;
288 break; 288 break;
289 case 'V': /* version */ 289 case 'V': /* version */
290 print_revision (PROGNAME, REVISION); 290 print_revision (progname, REVISION);
291 exit (STATE_OK); 291 exit (STATE_OK);
292 case 'h': /* help */ 292 case 'h': /* help */
293 print_help (); 293 print_help ();
@@ -308,7 +308,7 @@ process_arguments (int argc, char **argv)
308 else 308 else
309 terminate (STATE_UNKNOWN, 309 terminate (STATE_UNKNOWN,
310 "%s is not a valid expiration time\nUse '%s -h' for additional help\n", 310 "%s is not a valid expiration time\nUse '%s -h' for additional help\n",
311 argv[c], PROGNAME); 311 argv[c], progname);
312 } 312 }
313 313
314 if (argc > c && strcmp (argv[c], "MAX") == 0) { 314 if (argc > c && strcmp (argv[c], "MAX") == 0) {
@@ -359,7 +359,7 @@ validate_arguments (void)
359void 359void
360print_help (void) 360print_help (void)
361{ 361{
362 print_revision (PROGNAME, REVISION); 362 print_revision (progname, REVISION);
363 printf ("%s\n\n%s\n", COPYRIGHT, SUMMARY); 363 printf ("%s\n\n%s\n", COPYRIGHT, SUMMARY);
364 print_usage (); 364 print_usage ();
365 printf ("\nOptions:\n" LONGOPTIONS "\n" DESCRIPTION "\n"); 365 printf ("\nOptions:\n" LONGOPTIONS "\n" DESCRIPTION "\n");
@@ -377,5 +377,5 @@ print_usage (void)
377 " %s -h for detailed help\n" 377 " %s -h for detailed help\n"
378 " %s -V for version information\n", 378 " %s -V for version information\n",
379#endif 379#endif
380 PROGNAME, OPTIONS, PROGNAME, PROGNAME); 380 progname, OPTIONS, progname, progname);
381} 381}