diff options
author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2021-11-24 13:25:42 (GMT) |
---|---|---|
committer | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2021-11-24 13:25:42 (GMT) |
commit | e2f24a5af3fe407035c8c57f539148f2d694973b (patch) | |
tree | 5c0037b638001cfad26a31af281fad50f6540147 /plugins/check_disk.c | |
parent | 0e311b77d93df4b97c5f8cff73fea74a442ed4bc (diff) | |
download | monitoring-plugins-e2f24a5af3fe407035c8c57f539148f2d694973b.tar.gz |
Fix CodeQL checks
Diffstat (limited to 'plugins/check_disk.c')
-rw-r--r-- | plugins/check_disk.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/plugins/check_disk.c b/plugins/check_disk.c index c526d05..f032378 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c | |||
@@ -1040,9 +1040,15 @@ get_stats (struct parameter_list *p, struct fs_usage *fsp) { | |||
1040 | get_fs_usage (p_list->best_match->me_mountdir, p_list->best_match->me_devname, &tmpfsp); | 1040 | get_fs_usage (p_list->best_match->me_mountdir, p_list->best_match->me_devname, &tmpfsp); |
1041 | get_path_stats(p_list, &tmpfsp); | 1041 | get_path_stats(p_list, &tmpfsp); |
1042 | if (verbose >= 3) | 1042 | if (verbose >= 3) |
1043 | printf("Group %s: adding %llu blocks sized %llu, (%s) used_units=%g free_units=%g total_units=%g fsu_blocksize=%llu mult=%llu\n", | 1043 | printf("Group %s: adding %llu blocks sized %llu, (%s) used_units=%g free_units=%g total_units=%g mult=%llu\n", |
1044 | p_list->group, tmpfsp.fsu_bavail, tmpfsp.fsu_blocksize, p_list->best_match->me_mountdir, p_list->dused_units, p_list->dfree_units, | 1044 | p_list->group, |
1045 | p_list->dtotal_units, mult); | 1045 | tmpfsp.fsu_blocks, |
1046 | tmpfsp.fsu_blocksize, | ||
1047 | p_list->best_match->me_mountdir, | ||
1048 | p_list->dused_units, | ||
1049 | p_list->dfree_units, | ||
1050 | p_list->dtotal_units, | ||
1051 | mult); | ||
1046 | 1052 | ||
1047 | /* prevent counting the first FS of a group twice since its parameter_list entry | 1053 | /* prevent counting the first FS of a group twice since its parameter_list entry |
1048 | * is used to carry the information of all file systems of the entire group */ | 1054 | * is used to carry the information of all file systems of the entire group */ |
@@ -1065,12 +1071,10 @@ get_stats (struct parameter_list *p, struct fs_usage *fsp) { | |||
1065 | if (verbose >= 3) | 1071 | if (verbose >= 3) |
1066 | printf("Group %s now has: used_units=%g free_units=%g total_units=%g fsu_blocksize=%llu mult=%llu\n", | 1072 | printf("Group %s now has: used_units=%g free_units=%g total_units=%g fsu_blocksize=%llu mult=%llu\n", |
1067 | p->group, | 1073 | p->group, |
1068 | tmpfsp.fsu_bavail, | ||
1069 | tmpfsp.fsu_blocksize, | ||
1070 | p->best_match->me_mountdir, | ||
1071 | p->dused_units, | 1074 | p->dused_units, |
1072 | p->dfree_units, | 1075 | p->dfree_units, |
1073 | p->dtotal_units, | 1076 | p->dtotal_units, |
1077 | tmpfsp.fsu_blocksize, | ||
1074 | mult); | 1078 | mult); |
1075 | } | 1079 | } |
1076 | /* modify devname and mountdir for output */ | 1080 | /* modify devname and mountdir for output */ |