diff options
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 | } |
