diff options
Diffstat (limited to 'plugins/t')
0 files changed, 0 insertions, 0 deletions
diff --git a/plugins/check_disk.c b/plugins/check_disk.c index 3caf4a1..12b77a8 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c | |||
@@ -637,8 +637,11 @@ process_arguments (int argc, char **argv) | |||
637 | se->group = group; | 637 | se->group = group; |
638 | set_all_thresholds(se); | 638 | set_all_thresholds(se); |
639 | 639 | ||
640 | /* With autofs, it is required to stat() the path before populating the mount_list */ | 640 | /* With autofs, it is required to stat() the path before re-populating the mount_list */ |
641 | stat_path(se); | 641 | stat_path(se); |
642 | /* NB: We can't free the old mount_list "just like that": both list pointers and struct | ||
643 | * pointers are copied around. One of the reason it wasn't done yet is that other parts | ||
644 | * of check_disk need the same kind of cleanup so it'd better be done as a whole */ | ||
642 | mount_list = read_file_system_list (0); | 645 | mount_list = read_file_system_list (0); |
643 | np_set_best_match(se, mount_list, exact_match); | 646 | np_set_best_match(se, mount_list, exact_match); |
644 | 647 | ||