diff options
| author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-08-08 05:09:40 +0000 |
|---|---|---|
| committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-08-08 05:09:40 +0000 |
| commit | a9f992033fc32c0cca125e80d3d96aacfc78b802 (patch) | |
| tree | bad34ea7077716b4b074ee66ba3259097a4f3108 /plugins/check_disk.c | |
| parent | 65ca899d2c98b6342783922a5709c4b61e6b2b1f (diff) | |
| download | monitoring-plugins-a9f992033fc32c0cca125e80d3d96aacfc78b802.tar.gz | |
fix a variety of compiler warnings about qualifier discards and other pedantic stuff
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@663 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_disk.c')
| -rw-r--r-- | plugins/check_disk.c | 49 |
1 files changed, 26 insertions, 23 deletions
diff --git a/plugins/check_disk.c b/plugins/check_disk.c index 7feb5a57..7bed4d43 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c | |||
| @@ -1,19 +1,19 @@ | |||
| 1 | /****************************************************************************** | 1 | /****************************************************************************** |
| 2 | * | 2 | |
| 3 | * This program is free software; you can redistribute it and/or modify | 3 | This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License as published by | 4 | it under the terms of the GNU General Public License as published by |
| 5 | * the Free Software Foundation; either version 2 of the License, or | 5 | the Free Software Foundation; either version 2 of the License, or |
| 6 | * (at your option) any later version. | 6 | (at your option) any later version. |
| 7 | * | 7 | |
| 8 | * This program is distributed in the hope that it will be useful, | 8 | This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | * GNU General Public License for more details. | 11 | GNU General Public License for more details. |
| 12 | * | 12 | |
| 13 | * You should have received a copy of the GNU General Public License | 13 | You should have received a copy of the GNU General Public License |
| 14 | * along with this program; if not, write to the Free Software | 14 | along with this program; if not, write to the Free Software |
| 15 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 15 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 16 | * | 16 | |
| 17 | *****************************************************************************/ | 17 | *****************************************************************************/ |
| 18 | 18 | ||
| 19 | const char *progname = "check_disk"; | 19 | const char *progname = "check_disk"; |
| @@ -111,7 +111,7 @@ enum | |||
| 111 | int process_arguments (int, char **); | 111 | int process_arguments (int, char **); |
| 112 | void print_path (char *mypath); | 112 | void print_path (char *mypath); |
| 113 | int validate_arguments (uintmax_t, uintmax_t, double, double, char *); | 113 | int validate_arguments (uintmax_t, uintmax_t, double, double, char *); |
| 114 | int check_disk (int usp, uintmax_t free_disk); | 114 | int check_disk (double usp, uintmax_t free_disk); |
| 115 | int walk_name_list (struct name_list *list, const char *name); | 115 | int walk_name_list (struct name_list *list, const char *name); |
| 116 | void print_help (void); | 116 | void print_help (void); |
| 117 | void print_usage (void); | 117 | void print_usage (void); |
| @@ -120,9 +120,9 @@ uintmax_t w_df = 0; | |||
| 120 | uintmax_t c_df = 0; | 120 | uintmax_t c_df = 0; |
| 121 | double w_dfp = -1.0; | 121 | double w_dfp = -1.0; |
| 122 | double c_dfp = -1.0; | 122 | double c_dfp = -1.0; |
| 123 | char *path = ""; | 123 | char *path; |
| 124 | char *exclude_device = ""; | 124 | char *exclude_device; |
| 125 | char *units = NULL; | 125 | char *units; |
| 126 | uintmax_t mult = 1024 * 1024; | 126 | uintmax_t mult = 1024 * 1024; |
| 127 | int verbose = 0; | 127 | int verbose = 0; |
| 128 | int erronly = FALSE; | 128 | int erronly = FALSE; |
| @@ -140,14 +140,17 @@ main (int argc, char **argv) | |||
| 140 | int result = STATE_UNKNOWN; | 140 | int result = STATE_UNKNOWN; |
| 141 | int disk_result = STATE_UNKNOWN; | 141 | int disk_result = STATE_UNKNOWN; |
| 142 | char file_system[MAX_INPUT_BUFFER]; | 142 | char file_system[MAX_INPUT_BUFFER]; |
| 143 | char *output = ""; | 143 | char *output; |
| 144 | char *details = ""; | 144 | char *details; |
| 145 | float free_space, free_space_pct, total_space; | 145 | float free_space, free_space_pct, total_space; |
| 146 | 146 | ||
| 147 | struct mount_entry *me; | 147 | struct mount_entry *me; |
| 148 | struct fs_usage fsp; | 148 | struct fs_usage fsp; |
| 149 | struct name_list *temp_list; | 149 | struct name_list *temp_list; |
| 150 | 150 | ||
| 151 | output = strdup (""); | ||
| 152 | details = strdup (""); | ||
| 153 | |||
| 151 | mount_list = read_filesystem_list (0); | 154 | mount_list = read_filesystem_list (0); |
| 152 | 155 | ||
| 153 | if (process_arguments (argc, argv) != OK) | 156 | if (process_arguments (argc, argv) != OK) |
| @@ -414,7 +417,7 @@ process_arguments (int argc, char **argv) | |||
| 414 | if (c_dfp < 0 && argc > c && is_intnonneg (argv[c])) | 417 | if (c_dfp < 0 && argc > c && is_intnonneg (argv[c])) |
| 415 | c_dfp = (100.0 - atof (argv[c++])); | 418 | c_dfp = (100.0 - atof (argv[c++])); |
| 416 | 419 | ||
| 417 | if (argc > c && strlen (path) == 0) { | 420 | if (argc > c && path == NULL) { |
| 418 | se = (struct name_list *) malloc (sizeof (struct name_list)); | 421 | se = (struct name_list *) malloc (sizeof (struct name_list)); |
| 419 | se->name = strdup (argv[c++]); | 422 | se->name = strdup (argv[c++]); |
| 420 | se->name_next = NULL; | 423 | se->name_next = NULL; |
| @@ -482,7 +485,7 @@ INPUT ERROR: C_DF (%lu) should be less than W_DF (%lu) and both should be greate | |||
| 482 | 485 | ||
| 483 | 486 | ||
| 484 | int | 487 | int |
| 485 | check_disk (int usp, uintmax_t free_disk) | 488 | check_disk (double usp, uintmax_t free_disk) |
| 486 | { | 489 | { |
| 487 | int result = STATE_UNKNOWN; | 490 | int result = STATE_UNKNOWN; |
| 488 | /* check the percent used space against thresholds */ | 491 | /* check the percent used space against thresholds */ |
