diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | THANKS.in | 1 | ||||
-rw-r--r-- | plugins/check_disk.c | 1 |
3 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2007-05-03 22:34 psychotrahe + + * plugins/check_disk.c: - Fix partition selection if if last + argument is a pathname/device without using -p + 2007-04-10 08:17 dermoth * po/: POTFILES.in, de.po, fr.po, nagios-plugins.pot: Add some @@ -217,3 +217,4 @@ Mark Favas Felix Frank Denis Knauf Matthias Flacke +Emil Michles diff --git a/plugins/check_disk.c b/plugins/check_disk.c index 4872efca..c32c7ab3 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c @@ -734,6 +734,7 @@ process_arguments (int argc, char **argv) if (argc > c && path == NULL) { se = np_add_parameter(&path_select_list, strdup(argv[c++])); + path_selected = true; set_all_thresholds(se); } |