summaryrefslogtreecommitdiffstats
path: root/plugins/check_disk.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_disk.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_disk.c')
-rw-r--r--plugins/check_disk.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_disk.c b/plugins/check_disk.c
index 5534305..3c1cfef 100644
--- a/plugins/check_disk.c
+++ b/plugins/check_disk.c
@@ -45,7 +45,7 @@ int check_disk (int usp, int free_disk);
45void print_help (void); 45void print_help (void);
46void print_usage (void); 46void print_usage (void);
47 47
48const char *PROGNAME = "check_disk"; 48const char *progname = "check_disk";
49 49
50int w_df = -1; 50int w_df = -1;
51int c_df = -1; 51int c_df = -1;
@@ -252,7 +252,7 @@ process_arguments (int argc, char **argv)
252 exclude_device = optarg; 252 exclude_device = optarg;
253 break; 253 break;
254 case 'V': /* version */ 254 case 'V': /* version */
255 print_revision (PROGNAME, REVISION); 255 print_revision (progname, REVISION);
256 exit (STATE_OK); 256 exit (STATE_OK);
257 case 'h': /* help */ 257 case 'h': /* help */
258 print_help (); 258 print_help ();
@@ -323,7 +323,7 @@ check_disk (usp, free_disk)
323void 323void
324print_help (void) 324print_help (void)
325{ 325{
326 print_revision (PROGNAME, REVISION); 326 print_revision (progname, REVISION);
327 printf 327 printf
328 ("Copyright (c) 2000 Ethan Galstad/Karl DeBisschop\n\n" 328 ("Copyright (c) 2000 Ethan Galstad/Karl DeBisschop\n\n"
329 "This plugin will check the percent of used disk space on a mounted\n" 329 "This plugin will check the percent of used disk space on a mounted\n"
@@ -362,5 +362,5 @@ print_usage (void)
362 printf 362 printf
363 ("Usage: %s -w limit -c limit [-p path | -x device] [-t timeout] [-m] [-e] [--verbose]\n" 363 ("Usage: %s -w limit -c limit [-p path | -x device] [-t timeout] [-m] [-e] [--verbose]\n"
364 " %s (-h|--help)\n" 364 " %s (-h|--help)\n"
365 " %s (-V|--version)\n", PROGNAME, PROGNAME, PROGNAME); 365 " %s (-V|--version)\n", progname, progname, progname);
366} 366}