diff options
| author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-01-13 12:15:16 +0000 | 
|---|---|---|
| committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-01-13 12:15:16 +0000 | 
| commit | 0c3386274ef5002dffc20337ef02407f24d7400c (patch) | |
| tree | 1e78bac7844a548e56a642b35acfe1fd67342f71 /plugins/check_disk.c | |
| parent | de5650f28e4e43a7264913953f95a75d8afe23f0 (diff) | |
| download | monitoring-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.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/plugins/check_disk.c b/plugins/check_disk.c index 55343059..3c1cfef9 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c | |||
| @@ -45,7 +45,7 @@ int check_disk (int usp, int free_disk); | |||
| 45 | void print_help (void); | 45 | void print_help (void); | 
| 46 | void print_usage (void); | 46 | void print_usage (void); | 
| 47 | 47 | ||
| 48 | const char *PROGNAME = "check_disk"; | 48 | const char *progname = "check_disk"; | 
| 49 | 49 | ||
| 50 | int w_df = -1; | 50 | int w_df = -1; | 
| 51 | int c_df = -1; | 51 | int 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) | |||
| 323 | void | 323 | void | 
| 324 | print_help (void) | 324 | print_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 | } | 
